2005-08-15 02:24:36 +02:00
|
|
|
git-shortlog(1)
|
|
|
|
===============
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2006-03-09 17:24:50 +01:00
|
|
|
git-shortlog - Summarize 'git log' output
|
2005-08-15 02:24:36 +02:00
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2006-10-06 21:39:09 +02:00
|
|
|
git-log --pretty=short | 'git-shortlog' [-h] [-n] [-s]
|
2006-10-22 13:23:31 +02:00
|
|
|
git-shortlog [-n|--number] [-s|--summary] [<committish>...]
|
2005-08-15 02:24:36 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
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
|
|
|
|
-------
|
|
|
|
|
|
|
|
-h::
|
|
|
|
Print a short usage message and exit.
|
|
|
|
|
|
|
|
-n::
|
|
|
|
Sort output according to the number of commits per author instead
|
|
|
|
of author alphabetic order.
|
|
|
|
|
2006-10-12 18:26:34 +02:00
|
|
|
-s::
|
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
|
|
|
|
2006-06-07 20:32:33 +02:00
|
|
|
FILES
|
|
|
|
-----
|
|
|
|
'.mailmap'::
|
|
|
|
If this file exists, it will be used for mapping author email
|
|
|
|
addresses to a real author name. One mapping per line, first
|
|
|
|
the author name followed by the email address enclosed by
|
|
|
|
'<' and '>'. Use hash '#' for comments. Example:
|
|
|
|
|
|
|
|
# Keep alphabetized
|
|
|
|
Adam Morrow <adam@localhost.localdomain>
|
|
|
|
Eve Jones <eve@laptop.(none)>
|
2005-08-15 02:24:36 +02:00
|
|
|
|
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Jeff Garzik <jgarzik@pobox.com>
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by Junio C Hamano.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2005-09-19 12:10:51 +02:00
|
|
|
Part of the gitlink:git[7] suite
|
2005-08-15 02:24:36 +02:00
|
|
|
|