diff options
author | Pavan Kumar Sunkara <pavan.sss1991@gmail.com> | 2010-05-10 18:41:35 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-05-18 21:45:04 -0700 |
commit | 04794fdc2701f15d79d92805cfe94c9e754e2e05 (patch) | |
tree | 9222ae48f93e341c5427c9f89da54b5019d20837 /gitweb | |
parent | 0e4607c09d72ada4942ea49298dba83ec4145892 (diff) | |
download | git-04794fdc2701f15d79d92805cfe94c9e754e2e05.tar.gz |
gitweb: Use @diff_opts while using format-patch
Make git-format-patch (used by 'patch' and 'patches' views) use the
same rename detection options that git-diff and git-diff-tree (used
by 'commitdiff', 'blobdiff', etc.) use.
Signed-off-by: Pavan Kumar Sunkara <pavan.sss1991@gmail.com>
Acked-by: Jakub Narebski <jnareb@gmail.com>
Acked-by: Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'gitweb')
-rwxr-xr-x | gitweb/gitweb.perl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index c356e95f18..77e5f795a1 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -6117,8 +6117,8 @@ sub git_commitdiff { } push @commit_spec, '--root', $hash; } - open $fd, "-|", git_cmd(), "format-patch", '--encoding=utf8', - '--stdout', @commit_spec + open $fd, "-|", git_cmd(), "format-patch", @diff_opts, + '--encoding=utf8', '--stdout', @commit_spec or die_error(500, "Open git-format-patch failed"); } else { die_error(400, "Unknown commitdiff format"); |