Skip to content

Instantly share code, notes, and snippets.

@viktorkelemen
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save viktorkelemen/9232645 to your computer and use it in GitHub Desktop.
Save viktorkelemen/9232645 to your computer and use it in GitHub Desktop.
Show the number of lines added and removed by an author
git log --author="YOUR_NAME" --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