##// END OF EJS Templates
filemerge: only print out "merging f" output at premerge step...
Siddharth Agarwal -
r26609:47681e77 default
parent child Browse files
Show More
@@ -487,10 +487,11 b' def _filemerge(premerge, repo, mynode, o'
487 if mergetype == nomerge:
487 if mergetype == nomerge:
488 return True, func(repo, mynode, orig, fcd, fco, fca, toolconf)
488 return True, func(repo, mynode, orig, fcd, fco, fca, toolconf)
489
489
490 if orig != fco.path():
490 if premerge:
491 ui.status(_("merging %s and %s to %s\n") % (orig, fco.path(), fd))
491 if orig != fco.path():
492 else:
492 ui.status(_("merging %s and %s to %s\n") % (orig, fco.path(), fd))
493 ui.status(_("merging %s\n") % fd)
493 else:
494 ui.status(_("merging %s\n") % fd)
494
495
495 ui.debug("my %s other %s ancestor %s\n" % (fcd, fco, fca))
496 ui.debug("my %s other %s ancestor %s\n" % (fcd, fco, fca))
496
497
General Comments 0
You need to be logged in to leave comments. Login now