git-authors
Generate a list of committers of a Git repository.
TLDR
Print a full list of committers to stdout instead of to the AUTHORS 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
Populates the file matching authors|contributors -i with the authors of commits, according to the number of commits per author. Opens the file in $EDITOR when set.
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:
- Listing authors:
- Listing authors without email:
REPORTING BUGS
<https://github.com/tj/git-extras/issues>
SEE ALSO
<https://github.com/tj/git-extras>
AUTHOR
Written by Titus Wormer <tituswormer@gmail.com>