1git-shortlog(1) 2=============== 3 4NAME 5---- 6git-shortlog - Summarize 'git log' output 7 8SYNOPSIS 9-------- 10git-log --pretty=short | 'git-shortlog' [-h] [-n] [-s] 11 12DESCRIPTION 13----------- 14Summarizes 'git log' output in a format suitable for inclusion 15in release announcements. Each commit will be grouped by author and 16the first line of the commit message will be shown. 17 18Additionally, "[PATCH]" will be stripped from the commit description. 19 20OPTIONS 21------- 22 23-h:: 24 Print a short usage message and exit. 25 26-n:: 27 Sort output according to the number of commits per author instead 28 of author alphabetic order. 29 30-s:: 31 Supress commit description and provide a commit count summary only. 32 33FILES 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: 40 41 # Keep alphabetized 42 Adam Morrow <adam@localhost.localdomain> 43 Eve Jones <eve@laptop.(none)> 44 45Author 46------ 47Written by Jeff Garzik <jgarzik@pobox.com> 48 49Documentation 50-------------- 51Documentation by Junio C Hamano. 52 53GIT 54--- 55Part of the gitlink:git[7] suite 56