##// END OF EJS Templates
transaction: issue "new obsmarkers" message at the end of the transaction...
transaction: issue "new obsmarkers" message at the end of the transaction Instead of making bundle2 code responsible for this, it seems better to have it handled and the transaction level. First, it means the message will be more consistently printed. Second it means we won't spam the message over and over if the data arrive in multiple piece. Third, we are planning to move other similar message at the same level (for the same reason) so having them all at the same location will help us to control the order they are displayed.

File last commit:

r41978:c91321e8 default
r43164:38392d5b default
Show More
test-absorb-strip.t
46 lines | 662 B | text/troff | Tads3Lexer
/ tests / test-absorb-strip.t
Augie Fackler
absorb: import extension from Facebook's hg-experimental...
r38953 Do not strip innocent children. See https://bitbucket.org/facebook/hg-experimental/issues/6/hg-absorb-merges-diverged-commits
$ cat >> $HGRCPATH << EOF
> [extensions]
> absorb=
Augie Fackler
tests: fix a couple of drawdag.py references...
r39703 > drawdag=$TESTDIR/drawdag.py
Augie Fackler
absorb: import extension from Facebook's hg-experimental...
r38953 > EOF
$ hg init
$ hg debugdrawdag << EOF
> E
> |
> D F
> |/
> C
> |
> B
> |
> A
> EOF
$ hg up E -q
$ echo 1 >> B
$ echo 2 >> D
Mark Thomas
absorb: prompt user to accept absorb changes by default...
r40226 $ hg absorb -a
Martin von Zweigbergk
absorb: use scmutil.cleanupnodes() also when obsmarkers are disabled...
r41978 warning: orphaned descendants detected, not stripping 112478962961, 26805aba1e60
Augie Fackler
absorb: import extension from Facebook's hg-experimental...
r38953 saved backup bundle to * (glob)
2 of 2 chunk(s) applied
$ hg log -G -T '{desc}'
@ E
|
o D
|
o C
|
o B
|
| o F
| |
| o C
| |
| o B
|/
o A