Documentation / git-shortlog.txton commit gitweb: Convert project name to UTF-8 (0417941)
   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]
  11git-shortlog [-n|--number] [-s|--summary] [<committish>...]
  12
  13DESCRIPTION
  14-----------
  15Summarizes 'git log' output in a format suitable for inclusion
  16in release announcements. Each commit will be grouped by author and
  17the first line of the commit message will be shown.
  18
  19Additionally, "[PATCH]" will be stripped from the commit description.
  20
  21OPTIONS
  22-------
  23
  24-h::
  25        Print a short usage message and exit.
  26
  27-n::
  28        Sort output according to the number of commits per author instead
  29        of author alphabetic order.
  30
  31-s::
  32        Suppress commit description and provide a commit count summary only.
  33
  34FILES
  35-----
  36'.mailmap'::
  37        If this file exists, it will be used for mapping author email
  38        addresses to a real author name. One mapping per line, first
  39        the author name followed by the email address enclosed by
  40        '<' and '>'. Use hash '#' for comments. Example:
  41
  42                # Keep alphabetized
  43                Adam Morrow <adam@localhost.localdomain>
  44                Eve Jones <eve@laptop.(none)>
  45
  46Author
  47------
  48Written by Jeff Garzik <jgarzik@pobox.com>
  49
  50Documentation
  51--------------
  52Documentation by Junio C Hamano.
  53
  54GIT
  55---
  56Part of the gitlink:git[7] suite
  57