Sunday, May 15, 2011

top commiters on a git branch

You want to have a list of contributors sorted by number of commits?

git log --format=format:%an | sort | uniq -c | sort -r


will output something like that

1081 Mito
1033 sudo
872 Yusuke
478 morita
423 Yuki
396 Takahiro

2 comments: