add commit count options to git-shortlog
[git/jrn.git] / Documentation / git-shortlog.txt
blob1601d2267c34fec24ab527caa55d35a3c52c8063
1 git-shortlog(1)
2 ===============
4 NAME
5 ----
6 git-shortlog - Summarize 'git log' output
8 SYNOPSIS
9 --------
10 git-log --pretty=short | 'git-shortlog' [-h] [-n] [-s]
12 DESCRIPTION
13 -----------
14 Summarizes 'git log' output in a format suitable for inclusion
15 in release announcements. Each commit will be grouped by author and
16 the first line of the commit message will be shown.
18 Additionally, "[PATCH]" will be stripped from the commit description.
20 OPTIONS
21 -------
23 -h::
24         Print a short usage message and exit.
26 -n::
27         Sort output according to the number of commits per author instead
28         of author alphabetic order.
30 -s:
31         Supress commit description and Provide a commit count summary only.
33 FILES
34 -----
35 '.mailmap'::
36         If this file exists, it will be used for mapping author email
37         addresses to a real author name. One mapping per line, first
38         the author name followed by the email address enclosed by
39         '<' and '>'. Use hash '#' for comments. Example:
41                 # Keep alphabetized
42                 Adam Morrow <adam@localhost.localdomain>
43                 Eve Jones <eve@laptop.(none)>
45 Author
46 ------
47 Written by Jeff Garzik <jgarzik@pobox.com>
49 Documentation
50 --------------
51 Documentation by Junio C Hamano.
53 GIT
54 ---
55 Part of the gitlink:git[7] suite