Created
July 28, 2025 03:22
-
-
Save 17twenty/86febb14c9ff42d41132c88b04c6ba93 to your computer and use it in GitHub Desktop.
How to find all the emails belonging to a repo in Git
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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