Is it possible to list all users that contributed to a project (users that have done commits) in Git?
Any additional statistics?
Great answers by @pedro-nascimento, by @mic_e and others already solve the problem.
In addition, you can add the following line to your .gitconfig
contributors = shortlog -e --summary --numbered
or in shell type
git config --global alias.contributors 'shortlog -e --summary --numbered'
And after that you can simply invoke: git contributors