Skip to content

Instantly share code, notes, and snippets.

@pestilence669
Last active August 29, 2015 14:04
Show Gist options
  • Save pestilence669/a9959075651b168cd13c to your computer and use it in GitHub Desktop.
Save pestilence669/a9959075651b168cd13c to your computer and use it in GitHub Desktop.
Get all contributing author usernames in a Git project
#!/bin/bash
# vim: set ts=4 sw=4 noet:
git log | grep Author | cut -d' ' -f2 | sort -u
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment