view tests/test-hook @ 1638:1c75487badd6

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
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
date Thu, 26 Jan 2006 14:52:26 +0100
parents acd1832ebf31
children 9488d53233b5
line wrap: on
line source

#!/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"