[Request] [+ ] D11314: dirstate: forward `remove` call to newer `API`
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Sat Aug 21 09:56:07 UTC 2021
marmoute created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
The `_remove` method was only called in the deprecated `remove` function. We
merge the two and express it in terms of call to new API methods.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D11314
AFFECTED FILES
mercurial/dirstate.py
CHANGE DETAILS
diff --git a/mercurial/dirstate.py b/mercurial/dirstate.py
--- a/mercurial/dirstate.py
+++ b/mercurial/dirstate.py
@@ -858,13 +858,14 @@
b'6.0',
stacklevel=2,
)
- self._remove(f)
-
- def _remove(self, filename):
- """internal function to mark a file removed"""
self._dirty = True
- self._updatedfiles.add(filename)
- self._map.removefile(filename, in_merge=self.in_merge)
+ self._updatedfiles.add(f)
+ entry = self._map.get(f)
+ if entry is None:
+ # Assuming we are in a update/merge case
+ self.update_file(f, p1_tracked=True, wc_tracked=False)
+ else:
+ self.set_untracked(f)
def merge(self, f):
'''Mark a file merged.'''
To: marmoute, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20210821/acacc2dd/attachment.html>
More information about the Mercurial-patches
mailing list