Is it possible to list all users that contributed to a project (users that have done commits) in Git?
Any additional statistics?
You can try this:
git log | grep Author: | sort | uniq