Skip to content

Instantly share code, notes, and snippets.

@seoyoochan
Created January 23, 2016 10:11
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 seoyoochan/c37b0683d5d588a70fde to your computer and use it in GitHub Desktop.
Save seoyoochan/c37b0683d5d588a70fde to your computer and use it in GitHub Desktop.
Show stats of added/removed/total code lines per author
alias codeStat="git log --author=\"Yoochan Seo\" --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 }'"
BEGINCOMMENT
written by Yoochan Seo.
ENDCOMMENT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment