Skip to content

Commit

Permalink
git-rev-list.txt: make ascii markup uniform with other pages.
Browse files Browse the repository at this point in the history
Other pages use --option=<argument>, not --option='argument', do the
same here.

Signed-off-by: Matthieu Moy <Matthieu.Moy@imag.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Matthieu Moy authored and Junio C Hamano committed Apr 8, 2009
1 parent 4c0fe0a commit 982962c
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions Documentation/rev-list-options.txt
Original file line number Diff line number Diff line change
Expand Up @@ -140,38 +140,38 @@ limiting may be applied.
--

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

Limit the number of commits output.

--skip='number'::
--skip=<number>::

Skip 'number' commits before starting to show the commit output.

--since='date'::
--after='date'::
--since=<date>::
--after=<date>::

Show commits more recent than a specific date.

--until='date'::
--before='date'::
--until=<date>::
--before=<date>::

Show commits older than a specific date.

ifdef::git-rev-list[]
--max-age='timestamp'::
--min-age='timestamp'::
--max-age=<timestamp>::
--min-age=<timestamp>::

Limit the commits output to specified time range.
endif::git-rev-list[]

--author='pattern'::
--committer='pattern'::
--author=<pattern>::
--committer=<pattern>::

Limit the commits output to ones with author/committer
header lines that match the specified pattern (regular expression).

--grep='pattern'::
--grep=<pattern>::

Limit the commits output to ones with log message that
matches the specified pattern (regular expression).
Expand Down

0 comments on commit 982962c

Please sign in to comment.