Skip to content

Instantly share code, notes, and snippets.

@bunnymatic
Created July 9, 2014 15:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bunnymatic/a78deb0e3274af571916 to your computer and use it in GitHub Desktop.
Save bunnymatic/a78deb0e3274af571916 to your computer and use it in GitHub Desktop.
who done it - git blame statistics
Hop into a shell and to the root directory of your project and run
git ls-tree --name-only -z -r HEAD -- $1 | xargs -0 -n1 git blame --line-porcelain | grep "^author "|sort|uniq -c|sort -nr
Then wait a bit. You get a nice sorted list of lines of code and author name.
Add it to your bash profile like this
whodunit() {
git ls-tree --name-only -z -r HEAD -- $1 | xargs -0 -n1 git blame --line-porcelain | grep "^author "|sort|uniq -c|sort -nr
}
and now you have a command-line tool.
Started with http://stackoverflow.com/questions/4589731/git-blame-statistics
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment