Skip to content

Instantly share code, notes, and snippets.

@azizshamim
Created January 3, 2013 15:47
Show Gist options
  • Save azizshamim/4444410 to your computer and use it in GitHub Desktop.
Save azizshamim/4444410 to your computer and use it in GitHub Desktop.
git stats
# Git commits per author
git shortlog -s -n
# Git commits per day
git log --date=short --format='%ad' | sort | uniq -c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment