1GIT-AUTHORS(1) Git Extras GIT-AUTHORS(1)
2
3
4
6 git-authors - Generate authors report
7
9 git-authors [-l, --list] [--no-email]
10
12 Populates the file matching authors|contributors -i with the authors of
13 commits, according to the number of commits per author. Opens the file
14 in $EDITOR when set.
15
16 See the "MAPPING AUTHORS" section of git-shortlog(1) to coalesce
17 together commits by the same person.
18
20 -l, --list
21
22 Show authors.
23
24 --no-email
25
26 DonĀ“t show authorsĀ“ email.
27
29 Updating AUTHORS file:
30
31 $ git authors
32
33 Listing authors:
34
35 $ git authors --list
36
37
38
39 TJ Holowaychuk <tj@vision-media.ca>
40 hemanth.hm <hemanth.hm@gmail.com>
41 Jonhnny Weslley <jw@jonhnnyweslley.net>
42 nickl- <github@jigsoft.co.za>
43 Leila Muhtasib <muhtasib@gmail.com>
44
45
46
47
48 Listing authors without email:
49
50 $ git authors --list --no-email
51
52
53
54 TJ Holowaychuk
55 hemanth.hm
56 Jonhnny Weslley
57 nickl-
58 Leila Muhtasib
59
60
61
62
64 Written by Titus Wormer <tituswormer@gmail.com>
65
67 <https://github.com/tj/git-extras/issues>
68
70 <https://github.com/tj/git-extras>
71
72
73
74 October 2017 GIT-AUTHORS(1)