From: Kevin Ballard Date: Wed, 19 Mar 2008 06:16:28 +0000 (-0400) Subject: Add --reverse to the git-rev-list usage string X-Git-Tag: v1.5.5-rc1~11 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=7ccd366779dd0ff042472fd76223267c19b2e498;p=git.git Add --reverse to the git-rev-list usage string git-rev-list accepts --reverse, as documented in the manpage, but the usage string does not list it. Signed-off-by: Kevin Ballard Signed-off-by: Junio C Hamano --- diff --git a/builtin-rev-list.c b/builtin-rev-list.c index d0a141692..edc0bd35b 100644 --- a/builtin-rev-list.c +++ b/builtin-rev-list.c @@ -33,6 +33,7 @@ static const char rev_list_usage[] = " ordering output:\n" " --topo-order\n" " --date-order\n" +" --reverse\n" " formatting output:\n" " --parents\n" " --objects | --objects-edge\n"