Running the command below will show the email addresses of every contributor to a Github repository. This information is publicly accessible.
- Install Git on your computer.
- Clone a repository to your local computer.
- Open the terminal in the location of the repository.
- Run the command below (works in MacOS, Linux, Unix, etc).
git log | grep @ | cut -d' ' -f3 | tr -d '><'