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
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