standardize usage info string format
This patch puts the usage info strings that were not already in docopt- like format into docopt-like format, which will be a litle easier for end users and a lot easier for translators. Changes include: - Placing angle brackets around fill-in-the-blank parameters - Putting dashes in multiword parameter names - Adding spaces to [-f|--foobar] to make [-f | --foobar] - Replacing <foobar>* with [<foobar>...] Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Reviewed-by: Matthieu Moy <Matthieu.Moy@imag.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
addfb21a94
commit
9c9b4f2f8b
@ -358,7 +358,7 @@ static int cmd_parseopt(int argc, const char **argv, const char *prefix)
|
||||
{
|
||||
static int keep_dashdash = 0, stop_at_non_option = 0;
|
||||
static char const * const parseopt_usage[] = {
|
||||
N_("git rev-parse --parseopt [options] -- [<args>...]"),
|
||||
N_("git rev-parse --parseopt [<options>] -- [<args>...]"),
|
||||
NULL
|
||||
};
|
||||
static struct option parseopt_opts[] = {
|
||||
@ -496,9 +496,9 @@ static void die_no_single_rev(int quiet)
|
||||
}
|
||||
|
||||
static const char builtin_rev_parse_usage[] =
|
||||
N_("git rev-parse --parseopt [options] -- [<args>...]\n"
|
||||
N_("git rev-parse --parseopt [<options>] -- [<args>...]\n"
|
||||
" or: git rev-parse --sq-quote [<arg>...]\n"
|
||||
" or: git rev-parse [options] [<arg>...]\n"
|
||||
" or: git rev-parse [<options>] [<arg>...]\n"
|
||||
"\n"
|
||||
"Run \"git rev-parse --parseopt -h\" for more information on the first usage.");
|
||||
|
||||
|
Reference in New Issue
Block a user