Created
July 9, 2014 15:32
-
-
Save bunnymatic/a78deb0e3274af571916 to your computer and use it in GitHub Desktop.
who done it - git blame statistics
This file contains hidden or 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
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
I wrote a little tool in rust to do this (you get some extra stats like most popular file types too).
https://github.com/martinn/repoblame