Skip to content

Instantly share code, notes, and snippets.

@DefectingCat
Created January 30, 2024 09:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DefectingCat/9c2ea0cd62026ed9f1087eec0e7bbf53 to your computer and use it in GitHub Desktop.
Save DefectingCat/9c2ea0cd62026ed9f1087eec0e7bbf53 to your computer and use it in GitHub Desktop.
count git commit by author
git log --since="2023-01-01" --until="2023-12-31" --pretty='%aN' | sort | uniq -c | sort -k1 -n -r | head -n 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment