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
  • 15,506
  • 3
  • 36
  • 51

1 Answers1

2

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
  • 8,326
  • 9
  • 48
  • 71