##// END OF EJS Templates
rebase: choose default destination the same way as 'hg merge' (BC)...
rebase: choose default destination the same way as 'hg merge' (BC) This changeset finally make 'hg rebase' choose its default destination using the same logic as 'hg merge'. The previous default was "tipmost changeset on the current branch", the new default is "the other head if there is only one". This change has multiple consequences: - Multiple tests which were not rebasing anything (rebasing from tipmost head) are now rebasing on the other "lower" branch. This is the expected new behavior. - A test is now explicitly aborting when there is too many heads on the branch. This is the expected behavior. - We gained a better detection of the "nothing to rebase" case while performing 'hg pull --rebase' so the message have been updated. Making clearer than an update was performed and why. This is beneficial side-effect. - Rebasing from an active bookmark will behave the same as 'hg merge' from a bookmark.

File last commit:

r20832:5d57b210 default
r28189:fac3a24b default
Show More
rebase.sh
44 lines | 484 B | application/x-sh | BashLexer
Olle Lundberg
tests: don't hardcode path to bash interpreter...
r20832 #!/usr/bin/env bash
Nicolas Dumazet
tests: introduce a rebase bundle to use with rebase tests...
r14118 hg init rebase
cd rebase
Nicolas Dumazet
tests: upgrade bundles/rebase.hg to support test-rebase-collapse...
r14119 # @ 7: 'H'
# |
# | o 6: 'G'
# |/|
# o | 5: 'F'
# | |
# | o 4: 'E'
# |/
# | o 3: 'D'
# | |
# | o 2: 'C'
# | |
# | o 1: 'B'
# |/
# o 0: 'A'
Nicolas Dumazet
tests: introduce a rebase bundle to use with rebase tests...
r14118 echo A > A
hg ci -Am A
echo B > B
hg ci -Am B
echo C > C
hg ci -Am C
echo D > D
hg ci -Am D
Nicolas Dumazet
tests: upgrade bundles/rebase.hg to support test-rebase-collapse...
r14119 hg up -q -C 0
echo E > E
hg ci -Am E
hg up -q -C 0
Nicolas Dumazet
tests: introduce a rebase bundle to use with rebase tests...
r14118 echo F > F
hg ci -Am F
Nicolas Dumazet
tests: upgrade bundles/rebase.hg to support test-rebase-collapse...
r14119 hg merge -r 4
hg ci -m G
hg up -q -C 5
echo H > H
hg ci -Am H
Nicolas Dumazet
tests: introduce a rebase bundle to use with rebase tests...
r14118
hg bundle -a ../rebase.hg
cd ..
rm -Rf rebase