Skip to content

Instantly share code, notes, and snippets.

@grimzy
Created June 12, 2017 14:42
Show Gist options
  • Save grimzy/a2038bbcd25213463d6345fd4cd51fd9 to your computer and use it in GitHub Desktop.
Save grimzy/a2038bbcd25213463d6345fd4cd51fd9 to your computer and use it in GitHub Desktop.
List Git authors
#!/usr/bin/env bash
#git log --format='%aN' | sort -u
#OR
git shortlog -s | cut -c8-
#!/usr/bin/env bash
git log --format='%aN <%aE>' | awk '{arr[$0]++} END{for (i in arr){print arr[i], i;}}' | sort -rn | cut -d\ -f2-
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment