Uncategorized Who has committed code in your git repo? July 6, 2017 markcerv_admin Leave a comment Sometimes it is useful to know who has committed code to your repo. Here’s a super useful “one-liner” that can show you that info quite quickly: git log --format="%ae" | sort | uniq -c