Skip to content

Instantly share code, notes, and snippets.

@justinhillsjohnson
Created February 6, 2014 23:10
Show Gist options
  • Save justinhillsjohnson/8854424 to your computer and use it in GitHub Desktop.
Save justinhillsjohnson/8854424 to your computer and use it in GitHub Desktop.
git log --author="Justin H. Johnson" --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 }' -
@justinhillsjohnson
Copy link
Author

Dependencies

  • brew install gawk

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment