2005-08-15 02:24:36 +02:00
|
|
|
git-shortlog(1)
|
|
|
|
===============
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2008-07-03 07:28:15 +02:00
|
|
|
git-shortlog - Summarize 'git-log' output
|
2005-08-15 02:24:36 +02:00
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2007-04-19 00:10:22 +02:00
|
|
|
[verse]
|
2008-06-30 08:09:04 +02:00
|
|
|
git log --pretty=short | 'git shortlog' [-h] [-n] [-s] [-e] [-w]
|
|
|
|
git shortlog [-n|--numbered] [-s|--summary] [-e|--email] [-w[<width>[,<indent1>[,<indent2>]]]] [<committish>...]
|
2005-08-15 02:24:36 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2008-07-03 07:41:41 +02:00
|
|
|
Summarizes 'git-log' output in a format suitable for inclusion
|
2006-10-06 21:39:09 +02:00
|
|
|
in release announcements. Each commit will be grouped by author and
|
2006-06-07 20:32:33 +02:00
|
|
|
the first line of the commit message will be shown.
|
|
|
|
|
|
|
|
Additionally, "[PATCH]" will be stripped from the commit description.
|
|
|
|
|
2006-10-06 21:39:09 +02:00
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
|
2008-06-08 03:36:09 +02:00
|
|
|
-h::
|
|
|
|
--help::
|
2006-10-06 21:39:09 +02:00
|
|
|
Print a short usage message and exit.
|
|
|
|
|
2008-06-08 03:36:09 +02:00
|
|
|
-n::
|
|
|
|
--numbered::
|
2006-10-06 21:39:09 +02:00
|
|
|
Sort output according to the number of commits per author instead
|
|
|
|
of author alphabetic order.
|
|
|
|
|
2008-06-08 03:36:09 +02:00
|
|
|
-s::
|
|
|
|
--summary::
|
2007-01-17 16:32:41 +01:00
|
|
|
Suppress commit description and provide a commit count summary only.
|
2006-10-06 21:39:09 +02:00
|
|
|
|
2008-06-08 03:36:09 +02:00
|
|
|
-e::
|
|
|
|
--email::
|
2007-12-11 13:33:12 +01:00
|
|
|
Show the email address of each author.
|
|
|
|
|
2008-04-13 00:38:20 +02: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.
|
|
|
|
|
2006-06-07 20:32:33 +02:00
|
|
|
FILES
|
|
|
|
-----
|
2007-04-19 00:10:22 +02:00
|
|
|
|
2008-12-27 19:23:30 +01:00
|
|
|
If a file `.mailmap` exists at the toplevel of the repository,
|
|
|
|
it is used to map an author email address to a canonical real name. This
|
|
|
|
can be used to coalesce together commits by the same person where their
|
|
|
|
name was spelled differently (whether with the same email address or
|
|
|
|
not).
|
|
|
|
|
|
|
|
Each line in the file consists, in this order, of the canonical real name
|
|
|
|
of an author, whitespace, and an email address (enclosed by '<' and '>')
|
|
|
|
to map to the name. Use hash '#' for comments, either on their own line,
|
|
|
|
or after the email address.
|
|
|
|
|
|
|
|
A canonical name may appear in more than one line, associated with
|
|
|
|
different email addresses, but it doesn't make sense for a given address
|
|
|
|
to appear more than once (if that happens, a later line overrides the
|
|
|
|
earlier ones).
|
|
|
|
|
|
|
|
So, for example, if your history contains commits by two authors, Jane
|
|
|
|
and Joe, whose names appear in the repository under several forms:
|
|
|
|
|
|
|
|
------------
|
|
|
|
Joe Developer <joe@example.com>
|
|
|
|
Joe R. Developer <joe@example.com>
|
|
|
|
Jane Doe <jane@example.com>
|
|
|
|
Jane Doe <jane@laptop.(none)>
|
|
|
|
Jane D. <jane@desktop.(none)>
|
|
|
|
------------
|
|
|
|
|
|
|
|
Then, supposing Joe wants his middle name initial used, and Jane prefers
|
|
|
|
her family name fully spelled out, a proper `.mailmap` file would look like:
|
2007-12-23 19:37:01 +01:00
|
|
|
|
|
|
|
------------
|
2008-12-27 19:23:30 +01:00
|
|
|
# Note how we don't need an entry for <jane@laptop.(none)>, because the
|
|
|
|
# real name of that author is correct already, and coalesced directly.
|
|
|
|
Jane Doe <jane@desktop.(none)>
|
|
|
|
Joe R. Developer <joe@random.com>
|
2007-12-23 19:37:01 +01:00
|
|
|
------------
|
2005-08-15 02:24:36 +02:00
|
|
|
|
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Jeff Garzik <jgarzik@pobox.com>
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by Junio C Hamano.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|