hgbook

view en/examples/hook.simple.pretxncommit.out @ 228:50223e198614

Update output.
author Bryan O'Sullivan <bos@serpentine.com>
date Sat May 26 12:04:52 2007 -0700 (2007-05-26)
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