Skip to content

Instantly share code, notes, and snippets.

@emtii
Created November 21, 2016 21:33
Show Gist options
  • Save emtii/8881f6b950f5be7f4f9a76cbd4321e1c to your computer and use it in GitHub Desktop.
Save emtii/8881f6b950f5be7f4f9a76cbd4321e1c to your computer and use it in GitHub Desktop.
Get GIT User Stats
#!/bin/bash
git log --author="$0" --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