tests/test-alias
author Patrick Mezard <pmezard@gmail.com>
Sat, 11 Oct 2008 13:07:29 +0200
changeset 7077 ccbd39cad3c3
parent 5523 5db730475d6d
child 8477 a0104303f400
permissions -rwxr-xr-x
context: improve memctx documentation

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