How to get a listing of all email addresses associated with a Github repo.

Getting a listing of all email addresses attached to a Git repo is very easy, this simple command will do this simply. Just use Git to clone the repo to a folder, then run this command to see all emails. ┌──[[email protected]]─[~/Documents/sysinfo] └──╼ (master) ╼ $ git log "–format=format:%ae" | sort -u | sed ‘/noreply/d’ | … Read more