Skip to content

Instantly share code, notes, and snippets.

@xecutioner
Created April 4, 2016 03:45
Show Gist options
  • Save xecutioner/4d8c0c61ef708ffae68f7edbabfbeff5 to your computer and use it in GitHub Desktop.
Save xecutioner/4d8c0c61ef708ffae68f7edbabfbeff5 to your computer and use it in GitHub Desktop.
git stats
git log --author="nikesh" --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 }' -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment