From: Junio C Hamano Date: Thu, 12 Oct 2006 07:47:03 +0000 (-0700) Subject: gitweb: spell "blame --porcelain" with -p X-Git-Tag: v1.4.4-rc1~69^2 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=48fd688ab0ba7d41ff4286aee20f6f0b86e4c41c;p=git.git gitweb: spell "blame --porcelain" with -p Signed-off-by: Junio C Hamano --- diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 41d047766..34b88ce8e 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -2504,7 +2504,7 @@ sub git_blame2 { if ($ftype !~ "blob") { die_error("400 Bad Request", "Object is not a blob"); } - open ($fd, "-|", git_cmd(), "blame", '--porcelain', '--', + open ($fd, "-|", git_cmd(), "blame", '-p', '--', $file_name, $hash_base) or die_error(undef, "Open git-blame failed"); git_header_html();