If we want find all the people who have contributed to our project we use,
git shortlog
This command can take several options. For example, -n will sort the output according to the number of commits, -s will suppress commit descriptions, -e will show the contributors’ email address, etc. You can check the entire list by running
git shortlog -h
We can also filter the output using the --before and --after options.