equal
deleted
inserted
replaced
1 $ cat >> $HGRCPATH <<EOF |
1 $ cat >> $HGRCPATH <<EOF |
2 > [defaults] |
2 > [defaults] |
3 > amend=-d "0 0" |
3 > amend=-d "0 0" |
4 > [extensions] |
4 > [extensions] |
5 > hgext.graphlog= |
|
6 > EOF |
5 > EOF |
7 $ echo "evolve=$(echo $(dirname $TESTDIR))/hgext3rd/evolve/" >> $HGRCPATH |
6 $ echo "evolve=$(echo $(dirname $TESTDIR))/hgext3rd/evolve/" >> $HGRCPATH |
8 |
7 |
9 $ template='{rev}:{node|short}@{branch}({separate("/", obsolete, phase)}) {desc|firstline}\n' |
8 $ template='{rev}:{node|short}@{branch}({separate("/", obsolete, phase)}) {desc|firstline}\n' |
10 $ glog() { |
9 $ glog() { |
11 > hg glog --template "$template" "$@" |
10 > hg log -G --template "$template" "$@" |
12 > } |
11 > } |
13 |
12 |
14 Test outgoing, common A is suspended, B unstable and C secret, remote |
13 Test outgoing, common A is suspended, B unstable and C secret, remote |
15 has A and B, neither A or C should be in outgoing. |
14 has A and B, neither A or C should be in outgoing. |
16 |
15 |