##// END OF EJS Templates
color: bring back colors with pager...
color: bring back colors with pager It's introduced by 3c368a1c962d, but missing in merge changeset at a890cc501501.

File last commit:

r11198:b345b1cc default
r11207:1d714c15 default
Show More
test-rebase-issue-noparam-single-rev
51 lines | 837 B | text/plain | TextLexer
/ tests / test-rebase-issue-noparam-single-rev
Stefano Tortarolo
Add rebase extension
r6906 #!/bin/sh
Matt Mackall
rebase: use helpers.sh in tests
r11198 source $TESTDIR/helpers.sh
Stefano Tortarolo
Add rebase extension
r6906 echo "[extensions]" >> $HGRCPATH
echo "graphlog=" >> $HGRCPATH
echo "rebase=" >> $HGRCPATH
Brendan Cully
Debashify rebase tests
r6910 addcommit () {
Stefano Tortarolo
Add rebase extension
r6906 echo $1 > $1
hg add $1
Martin Geisler
tests: removed redundant "-u test" from test scripts...
r8168 hg commit -d "${2} 0" -m $1
Stefano Tortarolo
Add rebase extension
r6906 }
hg init a
cd a
addcommit "c1" 0
addcommit "c2" 1
addcommit "l1" 2
hg update -C 1
addcommit "r1" 3
addcommit "r2" 4
hg glog --template '{rev}:{desc}\n'
echo
echo '% Rebase with no arguments - single revision in source branch'
hg update -C 2
Matt Mackall
rebase: use helpers.sh in tests
r11198 hg rebase | hidebackup
Stefano Tortarolo
Add rebase extension
r6906 hg glog --template '{rev}:{desc}\n'
cd ..
rm -rf a
hg init a
cd a
addcommit "c1" 0
addcommit "c2" 1
addcommit "l1" 2
addcommit "l2" 3
hg update -C 1
addcommit "r1" 4
hg glog --template '{rev}:{desc}\n'
echo
echo '% Rebase with no arguments - single revision in target branch'
hg update -C 3
Matt Mackall
rebase: use helpers.sh in tests
r11198 hg rebase 2>&1 | hidebackup
Stefano Tortarolo
Add rebase extension
r6906 hg glog --template '{rev}:{desc}\n'