tests/test-hook
author mpm@selenic.com
Wed, 20 Jul 2005 20:00:29 -0500
changeset 740 d2422f10c136
parent 487 2ad41189bee5
child 749 7e4843b7efd2
permissions -rwxr-xr-x
Merge from BOS manifest hash: 2276dbd96bb4221e579c871a1de2403c92c85659
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
487
2ad41189bee5 Add initial hook support
mpm@selenic.com
parents:
diff changeset
     1
#!/bin/sh -x
2ad41189bee5 Add initial hook support
mpm@selenic.com
parents:
diff changeset
     2
2ad41189bee5 Add initial hook support
mpm@selenic.com
parents:
diff changeset
     3
hg init
2ad41189bee5 Add initial hook support
mpm@selenic.com
parents:
diff changeset
     4
echo "[hooks]" > .hg/hgrc
2ad41189bee5 Add initial hook support
mpm@selenic.com
parents:
diff changeset
     5
echo 'precommit = echo precommit hook' >> .hg/hgrc
2ad41189bee5 Add initial hook support
mpm@selenic.com
parents:
diff changeset
     6
echo 'commit = echo commit hook: $NODE' >> .hg/hgrc
2ad41189bee5 Add initial hook support
mpm@selenic.com
parents:
diff changeset
     7
echo a > a
2ad41189bee5 Add initial hook support
mpm@selenic.com
parents:
diff changeset
     8
hg add a
2ad41189bee5 Add initial hook support
mpm@selenic.com
parents:
diff changeset
     9
hg commit -t "test" -u test -d "0 0"