Show More
@@ -1754,9 +1754,7 b' def trydiff(repo, revs, ctx1, ctx2, modi' | |||
|
1754 | 1754 | bprefix = 'b/' |
|
1755 | 1755 | |
|
1756 | 1756 | def diffline(a, b, revs): |
|
1757 |
if |
|
|
1758 | line = 'diff --git %s%s %s%s\n' % (aprefix, a, bprefix, b) | |
|
1759 | elif not repo.ui.quiet: | |
|
1757 | if not repo.ui.quiet: | |
|
1760 | 1758 | if revs: |
|
1761 | 1759 | revinfo = ' '.join(["-r %s" % rev for rev in revs]) |
|
1762 | 1760 | line = 'diff %s %s\n' % (revinfo, a) |
@@ -1847,9 +1845,11 b' def trydiff(repo, revs, ctx1, ctx2, modi' | |||
|
1847 | 1845 | path1 = posixpath.join(prefix, f1) |
|
1848 | 1846 | path2 = posixpath.join(prefix, f2) |
|
1849 | 1847 | header = [] |
|
1850 |
if |
|
|
1848 | if revs: | |
|
1851 | 1849 | header.append(diffline(path1, path2, revs)) |
|
1852 | if opts.git: | |
|
1850 | elif opts.git: | |
|
1851 | header.append('diff --git %s%s %s%s\n' % | |
|
1852 | (aprefix, path1, bprefix, path2)) | |
|
1853 | 1853 | if content1 is None: # added |
|
1854 | 1854 | header.append('new file mode %s\n' % gitmode[flag2]) |
|
1855 | 1855 | elif content2 is None: # removed |
General Comments 0
You need to be logged in to leave comments.
Login now