Last Updated: February 25, 2016
·
304
· kablamo

count commits with 'git count'

Count how many commits were made by each developer who has committed to a project:

$ git count
   11114  Chuck Norris
   108  Batman
   84   The Lone Ranger

How to get that goodness

Add this alias to your .gitconfig:

count = shortlog -sn

I found this trick while reading @holman's dotfiles.