Who has committed code in your git repo?

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

Leave a Reply

Your email address will not be published. Required fields are marked *