[PATCH] git-apply --stat: show new filename for rename/copy patch.
When a patch is a git extended rename/copy patch, "git-apply --stat" showed the old filename. Change it to show the new filename, because most of the time we are interested in looking at the resulting tree. Signed-off-by: Junio C Hamano <junkio@cox.net> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
f5ab6ccae3
commit
03b4538bad
4
apply.c
4
apply.c
@ -723,11 +723,11 @@ const char minuses[]= "---------------------------------------------------------
|
|||||||
|
|
||||||
static void show_stats(struct patch *patch)
|
static void show_stats(struct patch *patch)
|
||||||
{
|
{
|
||||||
char *name = patch->old_name;
|
char *name = patch->new_name;
|
||||||
int len, max, add, del, total;
|
int len, max, add, del, total;
|
||||||
|
|
||||||
if (!name)
|
if (!name)
|
||||||
name = patch->new_name;
|
name = patch->old_name;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* "scale" the filename
|
* "scale" the filename
|
||||||
|
Loading…
Reference in New Issue
Block a user