6 git-shortlog - Summarize 'git log' output
10 git-log --pretty=short | 'git-shortlog' [-h] [-n] [-s]
11 git-shortlog [-n|--number] [-s|--summary] [<committish>...]
15 Summarizes 'git log' output in a format suitable for inclusion
16 in release announcements. Each commit will be grouped by author and
17 the first line of the commit message will be shown.
19 Additionally, "[PATCH]" will be stripped from the commit description.
25 Print a short usage message and exit.
28 Sort output according to the number of commits per author instead
29 of author alphabetic order.
32 Suppress commit description and provide a commit count summary only.
37 If this file exists, it will be used for mapping author email
38 addresses to a real author name. One mapping per line, first
39 the author name followed by the email address enclosed by
40 '<' and '>'. Use hash '#' for comments. Example:
43 Adam Morrow <adam@localhost.localdomain>
44 Eve Jones <eve@laptop.(none)>
48 Written by Jeff Garzik <jgarzik@pobox.com>
52 Documentation by Junio C Hamano.
56 Part of the gitlink:git[7] suite