Is there any easy way to calculate the number of lines changed between two commits in git? I know I can do a git diff, and count the lines, but this seems tedious. I'd also like to know how I can do this, including only my own commits in the linecounts.
|
|
|||
|
|
|
You want the
I somehow missed that you were looking for doing this on multiple commits at the same time - that's a task for
but you can use Here's a one-liner to get total changes instead of per-commit changes from git log (change the commit selection options as desired - this is commits by you, from commit1 to commit2):
(you have to let git log print some identifying information about the commit; I arbitrarily chose the hash, then used awk to only pick out the lines with three fields, which are the ones with the stat information) |
|||||||||||||||
|
EDIT: You have to specify the commits as well (without parameters it compares the working directory against the index). E.g.
to compare the parent of |
|||||||||||
|
|
Assuming that you want to compare all of your commits between abcd123 and wxyz789, inclusive:
This gives succinct output like:
|
|||||
|