[Commented On] D11314: dirstate: forward `remove` call to newer `API`
baymax (Baymax, Your Personal Patch-care Companion)
phabricator at mercurial-scm.org
Thu Aug 26 13:00:43 UTC 2021
baymax added a comment.
baymax updated this revision to Diff 30040.
✅ refresh by Heptapod after a successful CI run (🐙 💚)
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D11314?vs=29963&id=30040
BRANCH
default
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D11314/new/
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, Alphare
Cc: mercurial-patches
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mercurial-scm.org/pipermail/mercurial-patches/attachments/20210826/442b07b8/attachment-0002.html>
More information about the Mercurial-patches
mailing list