2005-08-15 04:24:36 +04:00
|
|
|
git-shortlog(1)
|
|
|
|
===============
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2010-01-10 02:33:00 +03:00
|
|
|
git-shortlog - Summarize 'git log' output
|
2005-08-15 04:24:36 +04:00
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2007-04-19 02:10:22 +04:00
|
|
|
[verse]
|
2008-06-30 10:09:04 +04:00
|
|
|
git log --pretty=short | 'git shortlog' [-h] [-n] [-s] [-e] [-w]
|
2010-01-10 23:29:34 +03:00
|
|
|
'git shortlog' [-n|--numbered] [-s|--summary] [-e|--email] [-w[<width>[,<indent1>[,<indent2>]]]] [<committish>...]
|
2005-08-15 04:24:36 +04:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2010-01-10 02:33:00 +03:00
|
|
|
Summarizes 'git log' output in a format suitable for inclusion
|
2006-10-06 23:39:09 +04:00
|
|
|
in release announcements. Each commit will be grouped by author and
|
2006-06-07 22:32:33 +04:00
|
|
|
the first line of the commit message will be shown.
|
|
|
|
|
|
|
|
Additionally, "[PATCH]" will be stripped from the commit description.
|
|
|
|
|
2006-10-06 23:39:09 +04:00
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
|
2008-06-08 05:36:09 +04:00
|
|
|
-h::
|
|
|
|
--help::
|
2006-10-06 23:39:09 +04:00
|
|
|
Print a short usage message and exit.
|
|
|
|
|
2008-06-08 05:36:09 +04:00
|
|
|
-n::
|
|
|
|
--numbered::
|
2006-10-06 23:39:09 +04:00
|
|
|
Sort output according to the number of commits per author instead
|
|
|
|
of author alphabetic order.
|
|
|
|
|
2008-06-08 05:36:09 +04:00
|
|
|
-s::
|
|
|
|
--summary::
|
2007-01-17 18:32:41 +03:00
|
|
|
Suppress commit description and provide a commit count summary only.
|
2006-10-06 23:39:09 +04:00
|
|
|
|
2008-06-08 05:36:09 +04:00
|
|
|
-e::
|
|
|
|
--email::
|
2007-12-11 15:33:12 +03:00
|
|
|
Show the email address of each author.
|
|
|
|
|
2008-04-13 02:38:20 +04:00
|
|
|
-w[<width>[,<indent1>[,<indent2>]]]::
|
|
|
|
Linewrap the output by wrapping each line at `width`. The first
|
|
|
|
line of each entry is indented by `indent1` spaces, and the second
|
|
|
|
and subsequent lines are indented by `indent2` spaces. `width`,
|
|
|
|
`indent1`, and `indent2` default to 76, 6 and 9 respectively.
|
|
|
|
|
2009-02-08 17:34:31 +03:00
|
|
|
|
|
|
|
MAPPING AUTHORS
|
|
|
|
---------------
|
|
|
|
|
|
|
|
The `.mailmap` feature is used to coalesce together commits by the same
|
|
|
|
person in the shortlog, where their name and/or email address was
|
|
|
|
spelled differently.
|
|
|
|
|
|
|
|
include::mailmap.txt[]
|
2009-02-08 17:34:29 +03:00
|
|
|
|
|
|
|
|
2005-08-15 04:24:36 +04:00
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Jeff Garzik <jgarzik@pobox.com>
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by Junio C Hamano.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 11:07:32 +04:00
|
|
|
Part of the linkgit:git[1] suite
|