tests/test-hook
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
Thu, 26 Jan 2006 14:52:26 +0100
changeset 1638 1c75487badd6
parent 1481 acd1832ebf31
child 1734 9488d53233b5
permissions -rwxr-xr-x
bash_completion: small updates and fixes - $result in _hg_commands is not an array - use "hg status ." - update "hg cat" completion - let bash itself generate the default completion

#!/bin/sh

hg init
echo "[hooks]" > .hg/hgrc
echo 'precommit = echo precommit hook' >> .hg/hgrc
echo 'commit = echo commit hook: $NODE' >> .hg/hgrc
echo 'commit.b = echo commit hook b' >> .hg/hgrc
echo a > a
hg add a
hg commit -m "test" -d "0 0"