Skip to content

Instantly share code, notes, and snippets.

@EugenAz
Created July 7, 2016 13:24
Show Gist options
  • Save EugenAz/af47db5618f9002bb5012ebdebefa850 to your computer and use it in GitHub Desktop.
Save EugenAz/af47db5618f9002bb5012ebdebefa850 to your computer and use it in GitHub Desktop.
Find who's the daddy in the project.
  • Get the list of all project authors
git log --format='%aN' | sort -u
  • Get the statistics chages lines per files.

Using Gawk:

git log --author="_Your_Name_Here_" --pretty=tformat: --numstat \
| gawk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s removed lines: %s total lines: %s\n", add, subs, loc }' -

Using Awk on Mac OSX:

git log --author="_Your_Name_Here_" --pretty=tformat: --numstat | awk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s, removed lines: %s, total lines: %s\n", add, subs, loc }' -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment