From: Pavan Kumar Sunkara Date: Mon, 10 May 2010 16:41:35 +0000 (+0200) Subject: gitweb: Use @diff_opts while using format-patch X-Git-Url: https://git.ladys.computer/Gitweb/commitdiff_plain/c84a940733d70d21cd9f534afd5db397ec9782e47119f91b15288e423ceca9b9?ds=sidebyside 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 Acked-by: Jakub Narebski Acked-by: Giuseppe Bilotta Signed-off-by: Junio C Hamano --- diff --git a/gitweb.perl b/gitweb.perl index 1f1842a..8b61a75 100755 --- a/gitweb.perl +++ b/gitweb.perl @@ -6326,8 +6326,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");