hgbook
view en/examples/hook.simple.pretxncommit.out @ 266:08ae82a18abd
just another typo
author | bab@draketo.de |
---|---|
date | Fri Aug 31 11:57:08 2007 +0200 (2007-08-31) |
parents | |
children | 00f69e8825c5 |
line source
1 $ \textbf{cat check_bug_id}
2 #!/bin/sh
3 # check that a commit comment mentions a numeric bug id
4 hg log -r $1 --template \{desc\} | grep -q "\textbackslash{}<bug *[0-9]"
5 $ \textbf{echo 'pretxncommit.bug_id_required = ./check_bug_id $HG_NODE' >> .hg/hgrc}
6 $ \textbf{echo a >> a}
7 $ \textbf{hg commit -m 'i am not mentioning a bug id'}
8 abort: pretxncommit.bug_id_required hook exited with status 1
9 transaction abort!
10 rollback completed
11 $ \textbf{hg commit -m 'i refer you to bug 666'}
12 committed