[Updated] D12025: graft: attempt to make merge labels more helpful
martinvonz (Martin von Zweigbergk)
phabricator at mercurial-scm.org
Mon Jan 24 17:35:50 UTC 2022
Closed by commit rHG47b3fca301f8: graft: attempt to make merge labels more helpful (authored by martinvonz).
This revision was automatically updated to reflect the committed changes.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D12025?vs=31725&id=31838
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D12025/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D12025
AFFECTED FILES
mercurial/commands.py
CHANGE DETAILS
diff --git a/mercurial/commands.py b/mercurial/commands.py
--- a/mercurial/commands.py
+++ b/mercurial/commands.py
@@ -3309,7 +3309,9 @@
overrides = {(b'ui', b'forcemerge'): opts.get('tool', b'')}
base = ctx.p1() if basectx is None else basectx
with ui.configoverride(overrides, b'graft'):
- stats = mergemod.graft(repo, ctx, base, [b'local', b'graft'])
+ stats = mergemod.graft(
+ repo, ctx, base, [b'local', b'graft', b'parent of graft']
+ )
# report any conflicts
if stats.unresolvedcount > 0:
# write out state for --continue
To: martinvonz, #hg-reviewers, Alphare
Cc: mercurial-patches
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mercurial-scm.org/pipermail/mercurial-patches/attachments/20220124/089a1500/attachment-0002.html>
More information about the Mercurial-patches
mailing list