0

Is there a simple way to show total size of changed code, not just number of commits, like

git shortlog -n -s do ?

Preferably with option to filter create/remove diffs.

setec
  • 14,498
  • 3
  • 32
  • 50

1 Answers1

1

I don't know what exactly you want, but you can try git diff --shortstat HEAD~10..HEAD~5, the result is like this:

27 files changed, 1431 insertions(+), 592 deletions(-)
pktangyue
  • 7,966
  • 7
  • 46
  • 70