tests/test-alias
author Matt Mackall <mpm@selenic.com>
Wed, 22 Oct 2008 19:40:29 -0500
changeset 7218 1bd7f90465b3
parent 5523 5db730475d6d
child 8477 a0104303f400
permissions -rwxr-xr-x
inotify: auto-start by default when enabled

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