提交 604c86d1 编写于 作者: J Junio C Hamano

blame: avoid "diff -u0".

As Linus suggests, use "diff -u -U 0" instead.
Signed-off-by: NJunio C Hamano <junkio@cox.net>
上级 8752d11d
......@@ -92,7 +92,7 @@ static struct patch *get_patch(struct commit *commit, struct commit *other)
die("write failed: %s", strerror(errno));
close(fd);
sprintf(diff_cmd, "diff -u0 %s %s", tmp_path1, tmp_path2);
sprintf(diff_cmd, "diff -u -U 0 %s %s", tmp_path1, tmp_path2);
fin = popen(diff_cmd, "r");
if (!fin)
die("popen failed: %s", strerror(errno));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册