Fix "git diff --stat" for interesting - but empty - file changes
commit74faaa16f016af9fc429770ba701f2aa598d9f21
authorLinus Torvalds <torvalds@linux-foundation.org>
Wed, 17 Oct 2012 17:00:37 +0000 (17 10:00 -0700)
committerJunio C Hamano <gitster@pobox.com>
Wed, 17 Oct 2012 18:50:50 +0000 (17 11:50 -0700)
tree766143938969c67fdb19c3da5782bd3020fd9fb3
parent87a5461fa7b30f7b7baf27204f10219d61500fbf
Fix "git diff --stat" for interesting - but empty - file changes

The behavior of "git diff --stat" is rather odd for files that have
zero lines of changes: it will discount them entirely unless they were
renames.

Which means that the stat output will simply not show files that only
had "other" changes: they were created or deleted, or their mode was
changed.

Now, those changes do show up in the summary, but so do renames, so
the diffstat logic is inconsistent. Why does it show renames with zero
lines changed, but not mode changes or added files with zero lines
changed?

So change the logic to not check for "is_renamed", but for
"is_interesting" instead, where "interesting" is judged to be any
action but a pure data change (because a pure data change with zero
data changed really isn't worth showing, if we ever get one in our
diffpairs).

So if you did

   chmod +x Makefile
   git diff --stat

before, it would show empty (" 0 files changed"), with this it shows

 Makefile | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

which I think is a more correct diffstat (and then with "--summary" it
shows *what* the metadata change to Makefile was - this is completely
consistent with our handling of renamed files).

Side note: the old behavior was *really* odd. With no changes at all,
"git diff --stat" output was empty. With just a chmod, it said "0
files changed". No way is our legacy behavior sane.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
diff.c
t/t4006-diff-mode.sh
t/t4049-diff-stat-count.sh
t/t4205-log-pretty-formats.sh