Skip to content

Instantly share code, notes, and snippets.

@kshitij10496
Created October 23, 2018 20:32
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 kshitij10496/ba22684b35f27ea8f5836109a1cd5e72 to your computer and use it in GitHub Desktop.
Save kshitij10496/ba22684b35f27ea8f5836109a1cd5e72 to your computer and use it in GitHub Desktop.
Shell command to create a list of all the authors of a Git repository
# You can add this to your Makefile to make it easy to update authors.
# Let's be thankful to the community and show our gratitude. :D
git log --pretty="%an <%ae>" | sort | uniq >> AUTHORS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment