Skip to content

Instantly share code, notes, and snippets.

@obstschale
Created April 21, 2013 10:14
Show Gist options
  • Save obstschale/5429161 to your computer and use it in GitHub Desktop.
Save obstschale/5429161 to your computer and use it in GitHub Desktop.
Displays the added lines, removed lines and the total for a specific author in a git log. (src: http://codeimpossible.com/2011/12/16/Stupid-Git-Trick-getting-contributor-stats/ )
git log --author="Hans-Helge Bürger" --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 }' -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment