Skip to content

Instantly share code, notes, and snippets.

@Victa
Created December 7, 2012 16:07
Showing Git Commit Counts
# 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