##// END OF EJS Templates
tests: add hack to avoid problem with graphlog in unified tests
tests: add hack to avoid problem with graphlog in unified tests

File last commit:

r11198:b345b1cc default
r12338:b016fc1c default
Show More
test-rebase-keep-branch
32 lines | 593 B | text/plain | TextLexer
/ tests / test-rebase-keep-branch
Augie Fackler
rebase: add support to keep branch names...
r7468 #!/bin/sh
echo "[extensions]" >> $HGRCPATH
echo "graphlog=" >> $HGRCPATH
echo "rebase=" >> $HGRCPATH
addcommit () {
echo $1 > $1
hg add $1
Martin Geisler
tests: removed redundant "-u test" from test scripts...
r8168 hg commit -d "${2} 0" -m $1
Augie Fackler
rebase: add support to keep branch names...
r7468 }
hg init a
cd a
addcommit "c1" 0
addcommit "c2" 1
addcommit "l1" 2
addcommit "l2" 3
hg update -C 1
hg branch 'notdefault'
addcommit "r1" 4
hg glog --template '{rev}:{desc}:{branches}\n'
echo
echo '% Rebase a branch while preserving the branch name'
hg update -C 3
Matt Mackall
rebase: use helpers.sh in tests
r11198 hg rebase -b 4 -d 3 --keepbranches -q
Augie Fackler
rebase: add support to keep branch names...
r7468 hg glog --template '{rev}:{desc}:{branches}\n'
Patrick Mezard
rebase: fix bug where --keepbranches could leave wrong branch in dirstate...
r8266 echo '% dirstate branch should be "notdefault"'
hg branch