blob: c7752575d8f5f35657cb9ef5a7e9e18b82ddc8b8 [file] [log] [blame]
Junio C Hamano1a4e8412005-12-27 08:17:231git-shortlog(1)
2===============
3
4NAME
5----
Junio C Hamano01078922006-03-10 00:31:476git-shortlog - Summarize 'git log' output
Junio C Hamano1a4e8412005-12-27 08:17:237
Junio C Hamano1a4e8412005-12-27 08:17:238SYNOPSIS
9--------
Junio C Hamanob6bd6ce2007-04-18 23:54:2810[verse]
Junio C Hamano0c0da5f2007-12-13 02:45:3011git-log --pretty=short | 'git-shortlog' [-h] [-n] [-s] [-e]
12git-shortlog [-n|--numbered] [-s|--summary] [-e|--email] [<committish>...]
Junio C Hamano1a4e8412005-12-27 08:17:2313
14DESCRIPTION
15-----------
16Summarizes 'git log' output in a format suitable for inclusion
Junio C Hamano5f1dfc72006-10-10 04:36:3017in release announcements. Each commit will be grouped by author and
Junio C Hamano33db4372006-06-07 19:51:4518the first line of the commit message will be shown.
Junio C Hamano1a4e8412005-12-27 08:17:2319
Junio C Hamano33db4372006-06-07 19:51:4520Additionally, "[PATCH]" will be stripped from the commit description.
21
Junio C Hamano5f1dfc72006-10-10 04:36:3022OPTIONS
23-------
24
Junio C Hamano469d60e2007-04-29 18:30:3425-h, \--help::
Junio C Hamano5f1dfc72006-10-10 04:36:3026Print a short usage message and exit.
27
Junio C Hamano469d60e2007-04-29 18:30:3428-n, \--numbered::
Junio C Hamano5f1dfc72006-10-10 04:36:3029Sort output according to the number of commits per author instead
30of author alphabetic order.
31
Junio C Hamano469d60e2007-04-29 18:30:3432-s, \--summary::
Junio C Hamanof9771f62007-01-17 17:42:3033Suppress commit description and provide a commit count summary only.
Junio C Hamano5f1dfc72006-10-10 04:36:3034
Junio C Hamano0c0da5f2007-12-13 02:45:3035-e, \--email::
36Show the email address of each author.
37
Junio C Hamano33db4372006-06-07 19:51:4538FILES
39-----
Junio C Hamanob6bd6ce2007-04-18 23:54:2840
Junio C Hamano0ec42932007-12-24 19:31:3941If the file `.mailmap` exists, it will be used for mapping author
42email addresses to a real author name. One mapping per line, first
43the author name followed by the email address enclosed by
44'<' and '>'. Use hash '#' for comments. Example:
Junio C Hamano33db4372006-06-07 19:51:4545
Junio C Hamano0ec42932007-12-24 19:31:3946------------
47# Keep alphabetized
48Adam Morrow <adam@localhost.localdomain>
49Eve Jones <eve@laptop.(none)>
50------------
Junio C Hamano1a4e8412005-12-27 08:17:2351
52Author
53------
54Written by Jeff Garzik <jgarzik@pobox.com>
55
56Documentation
57--------------
58Documentation by Junio C Hamano.
59
60GIT
61---
Junio C Hamano35738e82008-01-07 07:55:4662Part of the linkgit:git[7] suite