Created
December 7, 2012 16:07
Showing Git Commit Counts
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
# Show total number of commits in the current repository | |
git shortlog | grep -E '^[ ]+\w+' | wc -l | |
# Show number of commits by developer | |
git shortlog -s -n |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment