Skip to content

Instantly share code, notes, and snippets.

@ZweiSteinSoft
Created April 8, 2012 19:20
Show Gist options
  • Save ZweiSteinSoft/2339420 to your computer and use it in GitHub Desktop.
Save ZweiSteinSoft/2339420 to your computer and use it in GitHub Desktop.
List all contributors of a #Git repo, most actives first
#!/bin/sh
git log --pretty=format:%aN | sort | uniq -c | sort -rn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment