D11139: mq: use `update_file_p1` instead of `remove` when adjusting dirstate
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Mon Jul 19 10:43:30 UTC 2021
marmoute created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
This is the new API.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D11139
AFFECTED FILES
hgext/mq.py
CHANGE DETAILS
diff --git a/hgext/mq.py b/hgext/mq.py
--- a/hgext/mq.py
+++ b/hgext/mq.py
@@ -1099,7 +1099,7 @@
removed.append(f)
with repo.dirstate.parentchange():
for f in removed:
- repo.dirstate.remove(f)
+ repo.dirstate.update_file_p1(f, p1_tracked=True)
for f in merged:
repo.dirstate.merge(f)
p1 = repo.dirstate.p1()
@@ -2038,7 +2038,7 @@
for f in list(repo.dirstate.copies()):
repo.dirstate.copy(None, f)
for f in r:
- repo.dirstate.remove(f)
+ repo.dirstate.update_file_p1(f, p1_tracked=True)
# if the patch excludes a modified file, mark that
# file with mtime=0 so status can see it.
mm = []
To: marmoute, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list