Shell-script - How to list all authors of a particular git project, Git project log
How to list all authors of a particular git project
You can list all the authors of a particular git project using any one of the below two command's.
# git log --format='%aN' | sort -uThis should work even if the output format changes.
You can also use the below command
# git shortlog -s | cut -c8-List everyone who committed to a particular project, listed alphabetically. To list by commits, add -n to the shortlog.
The topic on Shell-script - How to list all authors of a particular git project is posted by - Patel
Hope you have enjoyed, Shell-script - How to list all authors of a particular git projectThanks for your time