Skip to content

Instantly share code, notes, and snippets.

@obstschale
Created April 21, 2013 10:18
Show Gist options
  • Save obstschale/5429173 to your computer and use it in GitHub Desktop.
Save obstschale/5429173 to your computer and use it in GitHub Desktop.
Displays the added lines, removed lines and the total for a specific author in a git log and removes certain files using `grep -v`. (src: http://codeimpossible.com/2011/12/16/Stupid-Git-Trick-getting-contributor-stats/ )
git log --author="Jared Barboza" --pretty=tformat: --numstat | \
grep -v public/javascripts/jquery | \
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