Skip to content

Instantly share code, notes, and snippets.

@tamzinblake
Created October 2, 2014 02:39
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 tamzinblake/8fa971d42d32c5586932 to your computer and use it in GitHub Desktop.
Save tamzinblake/8fa971d42d32c5586932 to your computer and use it in GitHub Desktop.
How to find lines of code by a particular author
for i in `git ls-tree -r master --name-only`; do [[ -n $(git blame $i | grep 'TJ Koblentz') ]] && echo $i; git blame $i | grep 'TJ Koblentz'; done | less -S
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment