[Request] [+ ] D11326: dirstatemap: use the default code to handle "clean-p2" case
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Sat Aug 21 09:57:15 UTC 2021
marmoute created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
This simplify the conditionnal a bit since most of it is handled by the common
code.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D11326
AFFECTED FILES
mercurial/dirstatemap.py
CHANGE DETAILS
diff --git a/mercurial/dirstatemap.py b/mercurial/dirstatemap.py
--- a/mercurial/dirstatemap.py
+++ b/mercurial/dirstatemap.py
@@ -289,11 +289,8 @@
# In addition, this seems to be a case where the file is marked
# as merged without actually being the result of a merge
# action. So thing are not ideal here.
- self.addfile(filename, merged=True)
- return
- else:
- self.addfile(filename, from_p2=True)
- return
+ merged = True
+ clean_p2 = False
elif not p1_tracked and p2_tracked and wc_tracked:
clean_p2 = True
elif possibly_dirty:
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/57bc3567/attachment-0001.html>
More information about the Mercurial-patches
mailing list