From 982962ce24c7d614d94f40de54cfcfdf71dcb0d2 Mon Sep 17 00:00:00 2001 From: Matthieu Moy Date: Tue, 7 Apr 2009 19:24:33 +0200 Subject: [PATCH] git-rev-list.txt: make ascii markup uniform with other pages. Other pages use --option=, not --option='argument', do the same here. Signed-off-by: Matthieu Moy Signed-off-by: Junio C Hamano --- Documentation/rev-list-options.txt | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Documentation/rev-list-options.txt b/Documentation/rev-list-options.txt index 7dd237c2f6..11eec941df 100644 --- a/Documentation/rev-list-options.txt +++ b/Documentation/rev-list-options.txt @@ -140,38 +140,38 @@ limiting may be applied. -- -n 'number':: ---max-count='number':: +--max-count=:: Limit the number of commits output. ---skip='number':: +--skip=:: Skip 'number' commits before starting to show the commit output. ---since='date':: ---after='date':: +--since=:: +--after=:: Show commits more recent than a specific date. ---until='date':: ---before='date':: +--until=:: +--before=:: Show commits older than a specific date. ifdef::git-rev-list[] ---max-age='timestamp':: ---min-age='timestamp':: +--max-age=:: +--min-age=:: Limit the commits output to specified time range. endif::git-rev-list[] ---author='pattern':: ---committer='pattern':: +--author=:: +--committer=:: Limit the commits output to ones with author/committer header lines that match the specified pattern (regular expression). ---grep='pattern':: +--grep=:: Limit the commits output to ones with log message that matches the specified pattern (regular expression). -- 2.11.4.GIT