sapling/eden/scm/tests/test-amend-restack-multidest.t
Mark Thomas 212cec117b tinit.sh: add configure for setting up standard configurations
Summary:
Add a new `tinit.sh` function: `configure`, which takes over from the
feature-enabling aspect of `enable`.

This provides a few features that are configurable:

  * `dummyssh` sets `ui.ssh` to `dummyssh`.
  * `mutation` and `mutation-norecord` enable mutation and visibility tracking
  * `evolution` enables evolution and disables mutation and visibility.
  * `noevolution` disables evolution, as well as mutation and visibility.

Since `enable` now only refers to extensions, it is joined by a corresponding `disable` to
disable an extension.

Some tests are updated to take advantage of these new functions.

Reviewed By: quark-zju

Differential Revision: D19427595

fbshipit-source-id: 03cc639918b4e667927330d3f3abf16121ebf161
2020-01-20 02:45:14 -08:00

161 lines
3.0 KiB
Perl

#chg-compatible
$ . helpers-usechg.sh
$ configure mutation-norecord
$ enable amend rebase
$ mkcommit() {
> echo "$1" > "$1"
> hg add "$1"
> hg ci -m "add $1"
> }
Restack does topological sort and only rebases "D" once:
$ newrepo
$ drawdag<<'EOS'
> D
> |
> C
> |
> B
> |
> A
> EOS
$ hg update $B -q
$ hg commit --amend -m B2 -q --no-rebase 2>/dev/null
$ B2=`hg log -r . -T '{node}'`
$ hg rebase -r $C -d $B2 -q
$ hg commit --amend -m B3 -q --no-rebase 2>/dev/null
$ B3=`hg log -r . -T '{node}'`
$ showgraph
@ 6 da1d4fe88e84 B3
|
| o 5 ca53c8ceb284 C
| |
| x 4 fdcbd16a7d51 B2
|/
| o 3 f585351a92f8 D
| |
| x 2 26805aba1e60 C
| |
| x 1 112478962961 B
|/
o 0 426bada5c675 A
$ hg rebase --restack
rebasing ca53c8ceb284 "C"
rebasing f585351a92f8 "D"
$ showgraph
o 8 981f3734c126 D
|
o 7 bab9c1b0a249 C
|
@ 6 da1d4fe88e84 B3
|
o 0 426bada5c675 A
Restack will only restack the "current" stack and leave other stacks untouched.
$ newrepo
$ drawdag<<'EOS'
> D H K
> | | |
> B C F G J L # amend: B -> C
> |/ |/ |/ # amend: F -> G
> A E I Z # amend: J -> L
> EOS
$ hg phase --public -r $Z+$I+$A+$E
$ hg update -q $Z
$ hg rebase --restack
nothing to restack
[1]
$ hg update -q $D
$ hg rebase --restack
rebasing be0ef73c17ad "D"
$ hg update -q $G
$ hg rebase --restack
rebasing cc209258a732 "H"
$ hg update -q $I
$ hg rebase --restack
rebasing 59760668f0e1 "K"
$ showgraph
o 15 c97827ce80f6 K
|
| o 14 47528c67632b H
| |
| | o 13 5cb8c357af9e D
| | |
o | | 12 a975bfef72d2 L
| | |
| o | 9 889f49cd29f6 G
| | |
| | o 7 dc0947a82db8 C
| | |
| | | o 3 48b9aae0607f Z
| | |
@ | | 2 02a9ac6a13a6 I
/ /
o / 1 e8e0a81d950f E
/
o 0 426bada5c675 A
Restack could resume after resolving merge conflicts.
$ newrepo
$ drawdag<<'EOS'
> F G # F/C = F # cause conflict
> | | # G/E = G # cause conflict
> B C D E # amend: B -> C
> |/ |/ # amend: D -> E
> | /
> | /
> | /
> |/
> A
> EOS
$ hg update -q $F
$ hg rebase --restack
rebasing ed8545a5c22a "F"
merging C
warning: 1 conflicts while merging C! (edit, then use 'hg resolve --mark')
unresolved conflicts (see hg resolve, then hg rebase --continue)
[1]
$ echo R > C
$ hg resolve --mark -q
continue: hg rebase --continue
$ hg rebase --continue
rebasing ed8545a5c22a "F"
rebasing 4d1ef7d890c5 "G"
merging E
warning: 1 conflicts while merging E! (edit, then use 'hg resolve --mark')
unresolved conflicts (see hg resolve, then hg rebase --continue)
[1]
$ echo R > E
$ hg resolve --mark -q
continue: hg rebase --continue
$ hg rebase --continue
already rebased ed8545a5c22a "F" as 2282fe522d5c
rebasing 4d1ef7d890c5 "G"
$ showgraph
o 8 3b00517bf275 G
|
| @ 7 2282fe522d5c F
| |
o | 4 7fb047a69f22 E
| |
| o 3 dc0947a82db8 C
|/
o 0 426bada5c675 A