##// END OF EJS Templates
debugpathcopies: sort output so it's deterministic...
Martin von Zweigbergk -
r41915:f9698868 default
parent child Browse files
Show More
@@ -1815,7 +1815,7 b' def debugpathcopies(ui, repo, rev1, rev2'
1815 1815 ctx1 = scmutil.revsingle(repo, rev1)
1816 1816 ctx2 = scmutil.revsingle(repo, rev2)
1817 1817 m = scmutil.match(ctx1, pats, opts)
1818 for dst, src in copies.pathcopies(ctx1, ctx2, m).items():
1818 for dst, src in sorted(copies.pathcopies(ctx1, ctx2, m).items()):
1819 1819 ui.write('%s -> %s\n' % (src, dst))
1820 1820
1821 1821 @command('debugpeer', [], _('PATH'), norepo=True)
General Comments 0
You need to be logged in to leave comments. Login now