Skip to content

Instantly share code, notes, and snippets.

@daniw
Created February 13, 2014 08:35
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 daniw/8971729 to your computer and use it in GitHub Desktop.
Save daniw/8971729 to your computer and use it in GitHub Desktop.
List all Contributors in all repositorys in current folder
for i in *; do cd $i; echo $i; git shortlog -s -n; cd ..; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment