Mercurial > evolve
diff tests/test-amend.t @ 6395:1328195f76a9 mercurial-5.6
test-compat: merge mercurial-5.7 into mercurial-5.6
author | Anton Shestakov <av6@dwimlabs.net> |
---|---|
date | Mon, 06 Feb 2023 19:49:33 +0400 |
parents | 1a13ac9ef30a bd2c42680dff |
children | b1d010b2e6c4 |
line wrap: on
line diff
--- a/tests/test-amend.t Thu Dec 08 20:23:47 2022 +0400 +++ b/tests/test-amend.t Mon Feb 06 19:49:33 2023 +0400 @@ -199,14 +199,14 @@ when rewritting an already rewritten changeset (i.e cset being rewritten will be the base of divergence) $ hg amend -m "i am gonna create divergence" - abort: amend of 9092f1db7931 creates content-divergence with aafaf407b00d + abort: cannot amend 9092f1db7931, as that creates content-divergence with aafaf407b00d (add --verbose for details or see 'hg help evolution.instability') [255] $ hg amend -m "i am gonna create divergence" --verbose - abort: amend of 9092f1db7931 creates content-divergence with aafaf407b00d - changeset 9092f1db7931 already have a successors as changeset aafaf407b00d + abort: cannot amend 9092f1db7931, as that creates content-divergence with aafaf407b00d + changeset 9092f1db7931 already has a successor in changeset aafaf407b00d rewriting changeset 9092f1db7931 would create "content-divergence" - set experimental.evolution.allowdivergence=True to overwrite this check + set experimental.evolution.allowdivergence=True to skip this check (see 'hg help evolution.instability' for details on content-divergence) [255] @@ -229,14 +229,14 @@ $ hg evolve -l $ hg amend -m "i am gonna create divergence" - abort: amend of f8c05838af90 creates content-divergence with aafaf407b00d, from 9092f1db7931 + abort: cannot amend f8c05838af90, as that creates content-divergence with aafaf407b00d, from 9092f1db7931 (add --verbose for details or see 'hg help evolution.instability') [255] $ hg amend -m "i am gonna create divergence" --verbose - abort: amend of f8c05838af90 creates content-divergence with aafaf407b00d, from 9092f1db7931 - changeset f8c05838af90 is an evolution of changeset 9092f1db7931 - changeset 9092f1db7931 already have a successors as changeset aafaf407b00d + abort: cannot amend f8c05838af90, as that creates content-divergence with aafaf407b00d, from 9092f1db7931 + changeset f8c05838af90 is a successor of changeset 9092f1db7931 + changeset 9092f1db7931 already has a successor in changeset aafaf407b00d rewriting changeset f8c05838af90 would create "content-divergence" - set experimental.evolution.allowdivergence=True to overwrite this check + set experimental.evolution.allowdivergence=True to skip this check (see 'hg help evolution.instability' for details on content-divergence) [255]