evolve: return the new replacement node to be stored in evolvestate
While resolving phase-divergence, we can end up obsoleting the phase-divergent
commit in favor of the public commit. Before this patch we return the node of
public commit to store as a replacement of the phase-divergent commit.
The above will not cause any problem till the time we use `hg evolve --abort` on
an interrupted evolve which tries to strip the replacement nodes because it
thinks that the replacements nodes are the ones which are created during the
resolution and are new.
Since we will be stripping a public node, `evolve --abort` will error out saying
cannot strip public changeset, unable to abort evolve which is bad.
We should make sure, replacements should only consist of new nodes formed. If
the instablity is resolved by obsoleting in favour of old changeset, we should
not store the old changeset in replacements in evolvestate.
--- a/hgext3rd/evolve/evolvecmd.py Wed May 23 02:39:38 2018 +0530
+++ b/hgext3rd/evolve/evolvecmd.py Wed May 23 02:33:14 2018 +0530
@@ -263,6 +263,7 @@
assert tr is not None
bmupdate = _bookmarksupdater(repo, bumped.node(), tr)
newid = None
+ replacementnode = None
# function to update the bookmark from the rebased changeset to new resolved
# changeset
@@ -309,6 +310,7 @@
extra=bumped.extra())
newid = repo.commitctx(new)
+ replacementnode = newid
if newid is None:
obsolete.createmarkers(repo, [(tmpctx, ())], operation='evolve')
newid = prec.node()
@@ -324,7 +326,7 @@
# reroute the working copy parent to the new changeset
with repo.dirstate.parentchange():
repo.dirstate.setparents(newid, node.nullid)
- return (True, newid)
+ return (True, replacementnode)
def _solvedivergent(ui, repo, divergent, evolvestate, dryrun=False,
confirm=False, progresscb=None):