List all developers on a project in Git

To show all users & emails, and the number of commits in the CURRENT branch:

git shortlog --summary --numbered --email

Or simply:

git shortlog -sne

To show users from all branches (not only the ones in the current branch) you have to add --all flag:

git shortlog -sne --all

Leave a Comment