Created
March 19, 2015 10:09
-
-
Save jirikuncar/011f3fd0e5eefd597eef to your computer and use it in GitHub Desktop.
git: user yearly stats
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git log --author="`git config --get user.name`" --pretty=tformat: --numstat --since=`date --date='1 year ago' +"%Y-%m-%d"` | 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