hgbook
annotate en/examples/hook.msglen @ 999:a6b81cd31cfd
adding complete.xml - which generated but Bryan did add it also - as I have absolutly no personnality I do as he does
author | Romain PELISSE <belaran@gmail.com> |
---|---|
date | Sat Sep 12 20:53:36 2009 +0200 (2009-09-12) |
parents | 18210d46491f |
children |
rev | line source |
---|---|
bos@49 | 1 #!/bin/sh |
bos@49 | 2 |
bos@49 | 3 hg init a |
bos@49 | 4 cd a |
bos@49 | 5 echo '[hooks]' > .hg/hgrc |
bos@49 | 6 echo 'pretxncommit.msglen = test `hg tip --template {desc} | wc -c` -ge 10' >> .hg/hgrc |
bos@49 | 7 |
bos@155 | 8 #$ name: go |
bos@49 | 9 |
bos@49 | 10 cat .hg/hgrc |
bos@49 | 11 echo a > a |
bos@49 | 12 hg add a |
bos@49 | 13 hg commit -A -m 'too short' |
bos@49 | 14 hg commit -A -m 'long enough' |