Mercurial > hg
annotate tests/test-alias @ 5018:c7623d2b2a66
convert: get rid of ugly use of hasattr
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Thu, 26 Jul 2007 13:36:53 -0700 |
parents | 6aa1fae4c28a |
children | 5db730475d6d |
rev | line source |
---|---|
4801 | 1 #!/bin/sh |
2 | |
3 cat > $HGRCPATH <<EOF | |
4 [extensions] | |
5 alias= | |
6 | |
7 [alias] | |
8 myinit = init | |
9 cleanstatus = status -c | |
10 unknown = bargle | |
11 ambiguous = s | |
12 recursive = recursive | |
13 EOF | |
14 | |
15 echo '% basic' | |
16 hg myinit alias | |
17 | |
18 echo '% unknown' | |
19 hg unknown | |
20 | |
21 echo '% ambiguous' | |
22 hg ambiguous | |
23 | |
24 echo '% recursive' | |
25 hg recursive | |
26 | |
27 cd alias | |
28 echo foo > foo | |
29 hg ci -Amfoo | |
30 | |
31 echo '% with opts' | |
32 hg cleanst |