diff options
author | Junio C Hamano <junkio@cox.net> | 2006-10-12 00:47:03 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-10-12 00:47:03 -0700 |
commit | 48fd688ab0ba7d41ff4286aee20f6f0b86e4c41c (patch) | |
tree | 7430ef799657ba5565a4a92d269cc6bdcf170b6a /gitweb | |
parent | 66d0ff1bd35530f84c2b73e2b0e367637805217a (diff) | |
download | git-48fd688ab0ba7d41ff4286aee20f6f0b86e4c41c.tar.gz git-48fd688ab0ba7d41ff4286aee20f6f0b86e4c41c.tar.xz |
gitweb: spell "blame --porcelain" with -p
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'gitweb')
-rwxr-xr-x | gitweb/gitweb.perl | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |