git-authors - Man Page
Generate authors report
Examples (TL;DR)
- Print a full list of committers to
stdout
instead of to theAUTHORS
file:git authors --list
- Append the list of committers to the
AUTHORS
file and open it in the default editor:git authors
- Append the list of committers, excluding emails, to the
AUTHORS
file and open it in the default editor:git authors --no-email
Synopsis
git-authors [-l, --list] [--no-email]
Description
See the "MAPPING AUTHORS" section of git-shortlog(1) to coalesce together commits by the same person.
Options
- -l, --list
- Show authors.
- --no-email
- Don´t show authors´ email.
Examples
Updating AUTHORS file:
$ git authors
Listing authors:
$ git authors --list TJ Holowaychuk <tj@vision-media.ca> hemanth.hm <hemanth.hm@gmail.com> Jonhnny Weslley <jw@jonhnnyweslley.net> nickl- <github@jigsoft.co.za> Leila Muhtasib <muhtasib@gmail.com>
Listing authors without email:
$ git authors --list --no-email TJ Holowaychuk hemanth.hm Jonhnny Weslley nickl- Leila Muhtasib
Author
Written by Titus Wormer <tituswormer@gmail.com>
Reporting Bugs
See Also
Referenced By
November 2023 Git Extras