tests/test-alias
author Bill Barry <after.fallout@gmail.com>
Thu, 22 Jan 2009 08:39:34 -0700
changeset 7691 bcdc2fe3fd07
parent 5523 5db730475d6d
child 8477 a0104303f400
permissions -rwxr-xr-x
Clarified 'hg paths' command help

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