From: Ramkumar Ramachandra Date: Mon, 22 Apr 2013 05:30:31 +0000 (+0530) Subject: builtin/shortlog.c: make usage string consistent with log X-Git-Tag: v1.8.3-rc0~1^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0942d519ada52c9cf831ecd3c562539be939d19e;p=git builtin/shortlog.c: make usage string consistent with log "--" is used to separate pathspecs from the rev specs, and not rev specs from the options, as the shortlog_usage string currently indicates. In correcting this usage string, make it consistent with the log_usage string. Signed-off-by: Ramkumar Ramachandra Signed-off-by: Junio C Hamano --- diff --git a/builtin/shortlog.c b/builtin/shortlog.c index 240bff3efa..1fd6f8ac59 100644 --- a/builtin/shortlog.c +++ b/builtin/shortlog.c @@ -10,9 +10,7 @@ #include "parse-options.h" static char const * const shortlog_usage[] = { - N_("git shortlog [-n] [-s] [-e] [-w] [rev-opts] [--] [... ]"), - "", - N_("[rev-opts] are documented in git-rev-list(1)"), + N_("git shortlog [] [] [[--] [...]]"), NULL };