context: use `update_file` instead of `normal` in `markcommitted`
authorPierre-Yves David <pierre-yves.david@octobus.net>
Mon, 19 Jul 2021 03:15:57 +0200
changeset 47706 5bbf304271a0
parent 47705 6975cef3add1
child 47707 61753b1ba96f
context: use `update_file` instead of `normal` in `markcommitted` This is the newer, more semantic API. Differential Revision: https://phab.mercurial-scm.org/D11148
mercurial/context.py
--- a/mercurial/context.py	Mon Jul 19 01:44:24 2021 +0200
+++ b/mercurial/context.py	Mon Jul 19 03:15:57 2021 +0200
@@ -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)