Created
December 7, 2012 16:07
-
-
Save Victa/4234257 to your computer and use it in GitHub Desktop.
Showing Git Commit Counts
This file contains 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