Skip to content

Instantly share code, notes, and snippets.

@iheitlager
Last active December 10, 2015 02:48
Show Gist options
  • Save iheitlager/4370772 to your computer and use it in GitHub Desktop.
Save iheitlager/4370772 to your computer and use it in GitHub Desktop.
extract all committers from git log
git log --raw | grep Author | sort | awk '{sub(/<.*>/,"");print $2,$3}' | uniq | sort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment