##// END OF EJS Templates
Added tests for bug with three-way-merging of old tip, tip and cwd.
Added tests for bug with three-way-merging of old tip, tip and cwd.

File last commit:

r749:7e4843b7 default
r792:49ec802b default
Show More
test-hook
9 lines | 200 B | text/plain | TextLexer
mpm@selenic.com
Add initial hook support...
r487 #!/bin/sh -x
hg init
echo "[hooks]" > .hg/hgrc
echo 'precommit = echo precommit hook' >> .hg/hgrc
echo 'commit = echo commit hook: $NODE' >> .hg/hgrc
echo a > a
hg add a
mpm@selenic.com
Update tests to use commit -m and default -u...
r749 hg commit -m "test" -d "0 0"