1GIT-SHORTLOG(1) Git Manual GIT-SHORTLOG(1)
2
3
4
6 git-shortlog - Summarize 'git log' output
7
9 git-log --pretty=short | git-shortlog [-h] [-n] [-s]
10 git-shortlog [-n|--numbered] [-s|--summary] [<committish>...]
11
13 Summarizes git log output in a format suitable for inclusion in release
14 announcements. Each commit will be grouped by author and the first line
15 of the commit message will be shown.
16
17 Additionally, "[PATCH]" will be stripped from the commit description.
18
20 -h, --help
21 Print a short usage message and exit.
22
23 -n, --numbered
24 Sort output according to the number of commits per author instead
25 of author alphabetic order.
26
27 -s, --summary
28 Suppress commit description and provide a commit count summary
29 only.
30
32 If this file exists, it will be used for mapping author email
33 addresses to a real author name. One mapping per line, first the
34 author name followed by the email address enclosed by < and >. Use
35 hash # for comments. Example:
36
37
38 # Keep alphabetized
39 Adam Morrow <adam@localhost.localdomain>
40 Eve Jones <eve@laptop.(none)>
41
43 Written by Jeff Garzik <jgarzik@pobox.com>
44
46 Documentation by Junio C Hamano.
47
49 Part of the git(7) suite
50
51
52
53
54Git 1.5.3.3 10/09/2007 GIT-SHORTLOG(1)