0

I tried

git diff --summary

as stated in git diff help, but changes are not being summarized, git diff does output changes in 5 different files.

Is there another way?

Example of darcs whatsnew --summarize output:

M ./XMonad/Prompt.hs -1 +1
M ./XMonad/Prompt/Shell.hs -1 +1
Carlos López-Camey
  • 2,504
  • 1
  • 17
  • 20

1 Answers1

2

try

git diff --stat

it gives a nice line-per-file list/graph showing lines added and removed.

Michael Slade
  • 13,802
  • 2
  • 39
  • 44