tests/test-alias
author Tobias Bell <tobias.bell@gmail.com>
Sat, 28 Mar 2009 16:34:40 +0100
changeset 7901 ccc6531e6db8
parent 5523 5db730475d6d
child 8477 a0104303f400
permissions -rwxr-xr-x
i18n: spelling correction in German translation

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