Comments
Patch
@@ -576,7 +576,7 @@
def __contains__(self, node):
return self._revcontains(self._torev(node))
-def cleanupnodes(repo, mapping, operation):
+def cleanupnodes(repo, mapping, operation, fm=None):
"""do common cleanups when old nodes are replaced by new nodes
That includes writing obsmarkers or stripping nodes, and moving bookmarks.
@@ -646,6 +646,20 @@
from . import repair # avoid import cycle
repair.delayedstrip(repo.ui, repo, list(mapping), operation)
+ # Display the hash changes if a formatter instance is passed.
+ if fm:
+ oldnodes = sorted(mapping.keys())
+ hexfunc = fm.hexfunc
+ label = 'cleanupnodes'
+ for node in oldnodes:
+ newnodes = mapping[node]
+ if len(newnodes) == 1:
+ newnode = newnodes[0]
+ fm.startitem()
+ fm.write('oldnode', '%s is changed to ', hexfunc(node),
+ label=label)
+ fm.write('newnode', '%s\n', hexfunc(newnode), label=label)
+
def addremove(repo, matcher, prefix, opts=None, dry_run=None, similarity=None):
if opts is None:
opts = {}