CC-ed Guiseppe Bilotta, author of 'patch' and 'patches' views (you can find this information using "git blame" or "git log --grep"). On Mon, 10 May 2010, Pavan Kumar Sunkara wrote: > Add option '-M' to use with format-patch whcih detects > renames in the commit. Subject: [PATCH RFC GSoC] 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. Note that I am not sure if it is really a good change, as it might create patches that (currently) can be applied only with git. > > Signed-off-by: Pavan Kumar Sunkara <pavan.sss1991@xxxxxxxxx> > --- > > gitweb/gitweb.perl | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl > index c356e95..0184de5 100755 > --- a/gitweb/gitweb.perl > +++ b/gitweb/gitweb.perl > @@ -6117,7 +6117,7 @@ sub git_commitdiff { > } > push @commit_spec, '--root', $hash; > } > - open $fd, "-|", git_cmd(), "format-patch", '--encoding=utf8', > + open $fd, "-|", git_cmd(), "format-patch", '-M', '--encoding=utf8', + open $fd, "-|", git_cmd(), "format-patch", @diff_opts, '--encoding=utf8', or - open $fd, "-|", git_cmd(), "format-patch", '--encoding=utf8', - '--stdout', @commit_spec + open $fd, "-|", git_cmd(), "format-patch", @diff_opts, + '--encoding=utf8', '--stdout', @commit_spec This patsh is both line-wrapped and whitespace-damaged (tabs replaced by spacess) > '--stdout', @commit_spec > or die_error(500, "Open git-format-patch failed"); > } else { > -- -- >8 -- Subject: [PATCH RFC GSoC] 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@xxxxxxxxx> Acked-by: Jakub Narebski <jnareb@xxxxxxxxx> --- gitweb/gitweb.perl | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git i/gitweb/gitweb.perl w/gitweb/gitweb.perl index 225f404..d983ce5 100755 --- i/gitweb/gitweb.perl +++ w/gitweb/gitweb.perl @@ -6295,8 +6295,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"); -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html