author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
Sun, 17 May 2009 16:15:37 +0200 | |
changeset 8477 | a0104303f400 |
parent 5523 | 5db730475d6d |
child 8519 | 5fbee915ea5d |
permissions | -rwxr-xr-x |
4801 | 1 |
#!/bin/sh |
2 |
||
5523
5db730475d6d
tests/*: avoid losing the original settings from $HGRCPATH
Alexis S. L. Carvalho <alexis@cecm.usp.br>
parents:
4801
diff
changeset
|
3 |
cat >> $HGRCPATH <<EOF |
4801 | 4 |
[extensions] |
5 |
alias= |
|
6 |
||
7 |
[alias] |
|
8 |
myinit = init |
|
9 |
cleanstatus = status -c |
|
10 |
unknown = bargle |
|
11 |
ambiguous = s |
|
12 |
recursive = recursive |
|
8477
a0104303f400
alias: honor the [defaults] section, fix issue1642
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
5523
diff
changeset
|
13 |
mylog = log |
a0104303f400
alias: honor the [defaults] section, fix issue1642
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
5523
diff
changeset
|
14 |
lognull = log -r null |
a0104303f400
alias: honor the [defaults] section, fix issue1642
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
5523
diff
changeset
|
15 |
|
a0104303f400
alias: honor the [defaults] section, fix issue1642
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
5523
diff
changeset
|
16 |
[defaults] |
a0104303f400
alias: honor the [defaults] section, fix issue1642
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
5523
diff
changeset
|
17 |
mylog = -q |
a0104303f400
alias: honor the [defaults] section, fix issue1642
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
5523
diff
changeset
|
18 |
lognull = -q |
a0104303f400
alias: honor the [defaults] section, fix issue1642
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
5523
diff
changeset
|
19 |
log = -v |
4801 | 20 |
EOF |
21 |
||
22 |
echo '% basic' |
|
23 |
hg myinit alias |
|
24 |
||
25 |
echo '% unknown' |
|
26 |
hg unknown |
|
27 |
||
28 |
echo '% ambiguous' |
|
29 |
hg ambiguous |
|
30 |
||
31 |
echo '% recursive' |
|
32 |
hg recursive |
|
33 |
||
34 |
cd alias |
|
35 |
echo foo > foo |
|
36 |
hg ci -Amfoo |
|
37 |
||
38 |
echo '% with opts' |
|
39 |
hg cleanst |
|
8477
a0104303f400
alias: honor the [defaults] section, fix issue1642
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
5523
diff
changeset
|
40 |
|
a0104303f400
alias: honor the [defaults] section, fix issue1642
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
5523
diff
changeset
|
41 |
echo '% interaction with defaults' |
a0104303f400
alias: honor the [defaults] section, fix issue1642
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
5523
diff
changeset
|
42 |
hg mylog |
a0104303f400
alias: honor the [defaults] section, fix issue1642
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
5523
diff
changeset
|
43 |
hg lognull |