Merge branch 'jc/web-blame' into next

* jc/web-blame:
  gitweb: spell "blame --porcelain" with -p
This commit is contained in:
Junio C Hamano
2006-10-12 00:47:40 -07:00

View File

@@ -2569,7 +2569,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();