Skip to content

Instantly share code, notes, and snippets.

@17twenty
Created July 28, 2025 03:22
Show Gist options
  • Save 17twenty/86febb14c9ff42d41132c88b04c6ba93 to your computer and use it in GitHub Desktop.
Save 17twenty/86febb14c9ff42d41132c88b04c6ba93 to your computer and use it in GitHub Desktop.
How to find all the emails belonging to a repo in Git
git clone https://github.com/${ORG}/${PROJECT}.git
git -C ${PROJECT} log | grep -E '^Author' | sort -u | grep -v "noreply.github.com"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment