Show More
@@ -1815,7 +1815,7 b' def debugpathcopies(ui, repo, rev1, rev2' | |||||
1815 | ctx1 = scmutil.revsingle(repo, rev1) |
|
1815 | ctx1 = scmutil.revsingle(repo, rev1) | |
1816 | ctx2 = scmutil.revsingle(repo, rev2) |
|
1816 | ctx2 = scmutil.revsingle(repo, rev2) | |
1817 | m = scmutil.match(ctx1, pats, opts) |
|
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 | ui.write('%s -> %s\n' % (src, dst)) |
|
1819 | ui.write('%s -> %s\n' % (src, dst)) | |
1820 |
|
1820 | |||
1821 | @command('debugpeer', [], _('PATH'), norepo=True) |
|
1821 | @command('debugpeer', [], _('PATH'), norepo=True) |
General Comments 0
You need to be logged in to leave comments.
Login now