D11148: context: use `update_file` instead of `normal` in `markcommitted`
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Mon Jul 19 10:44:04 UTC 2021
marmoute created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
This is the newer, more semantic API.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D11148
AFFECTED FILES
mercurial/context.py
CHANGE DETAILS
diff --git a/mercurial/context.py b/mercurial/context.py
--- a/mercurial/context.py
+++ b/mercurial/context.py
@@ -2022,7 +2022,9 @@
def markcommitted(self, node):
with self._repo.dirstate.parentchange():
for f in self.modified() + self.added():
- self._repo.dirstate.normal(f)
+ self._repo.dirstate.update_file(
+ f, p1_tracked=True, wc_tracked=True
+ )
for f in self.removed():
self._repo.dirstate.drop(f)
self._repo.dirstate.setparents(node)
To: marmoute, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list