view en/examples/hook.simple @ 139:ceaca14e49f0

Add local regexps to ignore bits of output.
author Bryan O'Sullivan <bos@serpentine.com>
date Tue, 06 Mar 2007 20:46:07 -0800
parents 6f37e6a7d8cd
children 627effec9d4e
line wrap: on
line source

#!/bin/bash

#$ name: init
#$ ignore: [0-9a-f]{40}

hg init hook-test
cd hook-test
echo '[hooks]' >> .hg/hgrc
echo 'commit = echo committed $HG_NODE' >> .hg/hgrc
cat .hg/hgrc
echo a > a
hg add a
hg commit -m 'testing commit hook'

#$ name: ext
#$ ignore: ^date of commit.*

echo 'commit.when = echo -n "date of commit: "; date' >> .hg/hgrc
echo a >> a
hg commit -m 'i have two hooks'

#$ name:

echo '#!/bin/sh' >> check_bug_id
echo '# check that a commit comment mentions a numeric bug id' >> check_bug_id
echo 'hg log -r $1 --template {desc} | grep -q "\<bug *[0-9]"' >> check_bug_id
chmod +x check_bug_id

#$ name: pretxncommit

cat check_bug_id

echo 'pretxncommit.bug_id_required = ./check_bug_id $HG_NODE' >> .hg/hgrc

echo a >> a
hg commit -m 'i am not mentioning a bug id'

hg commit -m 'i refer you to bug 666'