What would be a way to find largest commits (i.e. commits introducing most changes, for instance counted as the number of added/removed lines) in a git repo?
Note that I really want largest commits, not largest files, so git find fat commit is not helpful here.
you can use
git log --format=format:"%H" --shortstat.It will output something like
Seems like an easily parsed text.