Submitter | phabricator |
---|---|
Date | March 11, 2019, 9:08 p.m. |
Message ID | <differential-rev-PHID-DREV-nqyuxc7lqirm4plmzzy3-req@phab.mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/39223/ |
State | Superseded |
Headers | show |
Comments
martinvonz added a comment. Sorry, I forgot (again) to manually add the parent revision. That's done now. REPOSITORY rHG Mercurial REVISION DETAIL https://phab.mercurial-scm.org/D6120 To: martinvonz, #hg-reviewers, pulkit Cc: mercurial-devel
Patch
diff --git a/mercurial/scmutil.py b/mercurial/scmutil.py --- a/mercurial/scmutil.py +++ b/mercurial/scmutil.py @@ -1255,7 +1255,12 @@ wctx.copy(origsrc, dst) def movedirstate(repo, newctx, match=None): - """Move the dirstate to newctx and adjust it as necessary.""" + """Move the dirstate to newctx and adjust it as necessary. + + A matcher can be provided as an optimization. It is probably a bug to pass + a matcher that doesn't match all the differences between the parent of the + working copy and newctx. + """ oldctx = repo['.'] ds = repo.dirstate ds.setparents(newctx.node(), nullid)