extra-git
Version:
Common utility commands for Git repositories.
61 lines (35 loc) • 882 B
Plain Text
git-authors(1) -- Generate authors report
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:
$ git authors
Listing authors:
$ git authors --list
TJ Holowaychuk
hemanth.hm
Jonhnny Weslley
nickl-
Leila Muhtasib
Listing authors without email:
$ git authors --list --no-email
TJ Holowaychuk
hemanth.hm
Jonhnny Weslley
nickl-
Leila Muhtasib
AUTHOR
Written by Titus Wormer <>
REPORTING BUGS
<>
SEE ALSO
<>