summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 34925d3)
raw | patch | inline | side by side (parent: 34925d3)
author | Jonas Fonseca <fonseca@diku.dk> | |
Wed, 7 Jun 2006 18:32:33 +0000 (20:32 +0200) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Wed, 7 Jun 2006 19:37:46 +0000 (12:37 -0700) |
Signed-off-by: Jonas Fonseca <fonseca@diku.dk>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Documentation/git-apply.txt | patch | blob | history | |
Documentation/git-shortlog.txt | patch | blob | history | |
Documentation/glossary.txt | patch | blob | history |
index 9cc7c74deab0251eba8e34daf2b3c718071bedfd..2ff74949a73aa8670750105a7d292206877477c7 100644 (file)
-C<n>::
Ensure at least <n> lines of surrounding context match before
and after each change. When fewer lines of surrounding
- context exist they all most match. By default no context is
+ context exist they all must match. By default no context is
ever ignored.
--apply::
index 54fb922ba9704112f953e4f6de25f053e81b2097..7486ebe785733a6d4f4e1a3a2ea8f5c37b3f0a51 100644 (file)
----
git-shortlog - Summarize 'git log' output
-
SYNOPSIS
--------
git-log --pretty=short | 'git-shortlog'
DESCRIPTION
-----------
Summarizes 'git log' output in a format suitable for inclusion
-in release announcements.
-
+in release announcements. Each commit will be grouped by author
+the first line of the commit message will be shown.
+
+Additionally, "[PATCH]" will be stripped from the commit description.
+
+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)>
Author
------
index 39c90ad7a67cbceb83c41ee8dfe91d7b870e9e7a..116ddb7fbfd7654bb7330e8f56dd03a9be029cd1 100644 (file)
git archive::
Synonym for repository (for arch people).
+grafts::
+ Grafts enables two otherwise different lines of development to be
+ joined together by recording fake ancestry information for commits.
+ This way you can make git pretend the set of parents a commit
+ has is different from what was recorded when the commit was created.
+ Configured via the `.git/info/grafts` file.
+
hash::
In git's context, synonym to object name.