diff --git a/bin/git-authors b/bin/git-authors new file mode 100755 index 0000000..09ca4ab --- /dev/null +++ b/bin/git-authors @@ -0,0 +1,10 @@ +#!/bin/bash +# Git authors statistics +# http://stackoverflow.com/a/13687302 + +git ls-tree -r -z --name-only HEAD -- $1 \ + | xargs -0 -n1 git blame --line-porcelain HEAD \ + | grep "^author " \ + | sort \ + | uniq -c \ + | sort -nr