Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 281 Bytes

index.md

File metadata and controls

16 lines (11 loc) · 281 Bytes

git whois

Given a string for an author, try to figure out full name and email

Git alias:

whois = "!sh -c 'git log --regexp-ignore-case -1 --pretty=\"format:%an <%ae>\n\" --author=\"$1\"' -"

Example:

git whois alice
Alice Adams <[email protected]>