This is one of my favorite Git commands, I think mainly because I like to see where I am in a list of contributors.
git shortlog -s -n
This produces an ordered list of contributors to a Git repo, based on number of commits. Like this:
450 Jon Rohan
230 Jim Smith
100 Joe Jones
2 Fred Smith
Go ahead and try it on your repo.
ad