Skip to content

Commit

Permalink
Misc doc improvements
Browse files Browse the repository at this point in the history
Signed-off-by: Jonas Fonseca <fonseca@diku.dk>
Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Jonas Fonseca authored and Junio C Hamano committed Jun 7, 2006
1 parent 34925d3 commit 74237d6
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Documentation/git-apply.txt
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ OPTIONS
-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::
Expand Down
19 changes: 16 additions & 3 deletions Documentation/git-shortlog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,29 @@ NAME
----
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
------
Expand Down
7 changes: 7 additions & 0 deletions Documentation/glossary.txt
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,13 @@ file system::
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.

Expand Down

0 comments on commit 74237d6

Please sign in to comment.