Skip to content

Commit

Permalink
doc: move rev-list option -<n> from git-log.txt to rev-list-options.txt
Browse files Browse the repository at this point in the history
rev-list-options.txt is included in git-rev-list.txt. This makes sure
rev-list man page also shows that, and at one place, together with
equivalent options -n and --max-count.

Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Nguyễn Thái Ngọc Duy authored and Junio C Hamano committed Sep 6, 2012
1 parent 785ee49 commit 70c2a25
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 2 additions & 4 deletions Documentation/git-log.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@ each commit introduces are shown.
OPTIONS
-------

-<n>::
Limits the number of commits to show.
Note that this is a commit limiting option, see below.

<since>..<until>::
Show only commits between the named two commits. When
either <since> or <until> is omitted, it defaults to
Expand Down Expand Up @@ -137,6 +133,8 @@ Examples
This makes sense only when following a strict policy of merging all
topic branches when staying on a single integration branch.

`git log -3`::
Limits the number of commits to show to 3.

Discussion
----------
Expand Down
3 changes: 2 additions & 1 deletion Documentation/rev-list-options.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ ordering and formatting options, such as '--reverse'.

--

-n 'number'::
-<number>::
-n <number>::
--max-count=<number>::

Limit the number of commits to output.
Expand Down

0 comments on commit 70c2a25

Please sign in to comment.