tests/test-alias
author John Mulligan <phlogistonjohn@yahoo.com>
Thu, 21 Feb 2008 08:24:58 -0500
changeset 6171 73b1de288801
parent 5523 5db730475d6d
child 8477 a0104303f400
permissions -rwxr-xr-x
Add --all option to bundle command

#!/bin/sh

cat >> $HGRCPATH <<EOF
[extensions]
alias=

[alias]
myinit = init
cleanstatus = status -c
unknown = bargle
ambiguous = s
recursive = recursive
EOF

echo '% basic'
hg myinit alias

echo '% unknown'
hg unknown

echo '% ambiguous'
hg ambiguous

echo '% recursive'
hg recursive

cd alias
echo foo > foo
hg ci -Amfoo

echo '% with opts'
hg cleanst