Documentation / git-shortlog.txton commit Documentation/technical/racy-git.txt (520cd3e)
   1git-shortlog(1)
   2===============
   3
   4NAME
   5----
   6git-shortlog - Summarize 'git log' output
   7
   8SYNOPSIS
   9--------
  10git-log --pretty=short | 'git-shortlog'
  11
  12DESCRIPTION
  13-----------
  14Summarizes 'git log' output in a format suitable for inclusion
  15in release announcements. Each commit will be grouped by author
  16the first line of the commit message will be shown.
  17
  18Additionally, "[PATCH]" will be stripped from the commit description.
  19
  20FILES
  21-----
  22'.mailmap'::
  23        If this file exists, it will be used for mapping author email
  24        addresses to a real author name. One mapping per line, first
  25        the author name followed by the email address enclosed by
  26        '<' and '>'. Use hash '#' for comments. Example:
  27
  28                # Keep alphabetized
  29                Adam Morrow <adam@localhost.localdomain>
  30                Eve Jones <eve@laptop.(none)>
  31
  32Author
  33------
  34Written by Jeff Garzik <jgarzik@pobox.com>
  35
  36Documentation
  37--------------
  38Documentation by Junio C Hamano.
  39
  40GIT
  41---
  42Part of the gitlink:git[7] suite
  43