Mercurial > hgbook
view en/examples/hook.ws @ 91:7524d52d9577
More tour progress.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Thu, 12 Oct 2006 16:01:40 -0700 |
parents | ec1f144968de |
children | 8cf40d4d9377 |
line wrap: on
line source
#!/bin/bash hg init a cd a echo '[hooks]' > .hg/hgrc echo "pretxncommit.whitespace = hg export tip | (! grep -qP '^\\+.*[ \\t]$')" >> .hg/hgrc #$ name: simple cat .hg/hgrc echo 'a ' > a hg commit -A -m 'test with trailing whitespace' echo 'a' > a hg commit -A -m 'drop trailing whitespace and try again' #$ name: echo '[hooks]' > .hg/hgrc echo "pretxncommit.whitespace = check_whitespace.py" >> .hg/hgrc cp $EXAMPLE_DIR/data/check_whitespace.py . #$ name: better cat .hg/hgrc echo 'a ' >> a hg commit -A -m 'add new line with trailing whitespace' perl -pi -e 's,\s+$,,' a hg commit -A -m 'trimmed trailing whitespace' #$ name: exit 0