Skip to content

Instantly share code, notes, and snippets.

@imightbeamy
Last active November 11, 2015 20:27
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 imightbeamy/c82ed70d67f4f52978b2 to your computer and use it in GitHub Desktop.
Save imightbeamy/c82ed70d67f4f52978b2 to your computer and use it in GitHub Desktop.
function line_stats() {
git log --author=`whoami` --pretty=tformat: --numstat \
| gawk '{ add += $1 ; subs += $2 ; loc += $1 - $2 } END { printf "added: \t%s\nremoved:\t-%s\ntotal: \t%s\n",add,subs,loc }'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment