blob: 2220ef6ea8d3bfa58f3c1279dfcf4f735c2dae0a [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 Hamano5f1dfc72006-10-10 04:36:3011git-log --pretty=short | 'git-shortlog' [-h] [-n] [-s]
Junio C Hamano469d60e2007-04-29 18:30:3412git-shortlog [-n|--numbered] [-s|--summary] [<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 Hamano33db4372006-06-07 19:51:4535FILES
36-----
Junio C Hamanob6bd6ce2007-04-18 23:54:2837
38.mailmap::
Junio C Hamano33db4372006-06-07 19:51:4539If this file exists, it will be used for mapping author email
40addresses to a real author name. One mapping per line, first
41the author name followed by the email address enclosed by
42'<' and '>'. Use hash '#' for comments. Example:
43
44# Keep alphabetized
45Adam Morrow <adam@localhost.localdomain>
46Eve Jones <eve@laptop.(none)>
Junio C Hamano1a4e8412005-12-27 08:17:2347
48Author
49------
50Written by Jeff Garzik <jgarzik@pobox.com>
51
52Documentation
53--------------
54Documentation by Junio C Hamano.
55
56GIT
57---
58Part of the gitlink:git[7] suite