]> git.ipfire.org Git - thirdparty/git.git/commitdiff
amend remaining usage strings according to style guide
authorAbhradeep Chakraborty <chakrabortyabhradeep79@gmail.com>
Wed, 23 Feb 2022 14:27:34 +0000 (14:27 +0000)
committerJunio C Hamano <gitster@pobox.com>
Wed, 23 Feb 2022 22:43:10 +0000 (14:43 -0800)
Usage strings for git (sub)command flags has a style guide that
suggests - first letter should not capitalized (unless required)
and it should skip full-stop at the end of line. But there are
some files where usage-strings do not follow the above mentioned
guide.

Amend the usage strings that don't follow the style convention/guide.

Signed-off-by: Abhradeep Chakraborty <chakrabortyabhradeep79@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/bisect--helper.c
builtin/reflog.c
builtin/submodule--helper.c
diff.c
t/helper/test-run-command.c

index 28a2e6a5750b737d18412cde48394b73e9a74c30..614d95b022c8f63c3b78c75165617d196b89f1b8 100644 (file)
@@ -1209,7 +1209,7 @@ int cmd_bisect__helper(int argc, const char **argv, const char *prefix)
                OPT_CMDMODE(0, "bisect-visualize", &cmdmode,
                         N_("visualize the bisection"), BISECT_VISUALIZE),
                OPT_CMDMODE(0, "bisect-run", &cmdmode,
-                        N_("use <cmd>... to automatically bisect."), BISECT_RUN),
+                        N_("use <cmd>... to automatically bisect"), BISECT_RUN),
                OPT_BOOL(0, "no-log", &nolog,
                         N_("no log for BISECT_WRITE")),
                OPT_END()
index 85b838720c364ae54c5ebf410a58921e6f8fd73e..28372c5e2b5bc32b825291c16b85431882aaa871 100644 (file)
@@ -600,7 +600,7 @@ static int cmd_reflog_expire(int argc, const char **argv, const char *prefix)
                OPT_BIT(0, "updateref", &flags,
                        N_("update the reference to the value of the top reflog entry"),
                        EXPIRE_REFLOGS_UPDATE_REF),
-               OPT_BOOL(0, "verbose", &verbose, N_("print extra information on screen.")),
+               OPT_BOOL(0, "verbose", &verbose, N_("print extra information on screen")),
                OPT_CALLBACK_F(0, "expire", &cmd, N_("timestamp"),
                               N_("prune entries older than the specified time"),
                               PARSE_OPT_NONEG,
@@ -613,7 +613,7 @@ static int cmd_reflog_expire(int argc, const char **argv, const char *prefix)
                         N_("prune any reflog entries that point to broken commits")),
                OPT_BOOL(0, "all", &do_all, N_("process the reflogs of all references")),
                OPT_BOOL(1, "single-worktree", &all_worktrees,
-                        N_("limits processing to reflogs from the current worktree only.")),
+                        N_("limits processing to reflogs from the current worktree only")),
                OPT_END()
        };
 
@@ -736,7 +736,7 @@ static int cmd_reflog_delete(int argc, const char **argv, const char *prefix)
                OPT_BIT(0, "updateref", &flags,
                        N_("update the reference to the value of the top reflog entry"),
                        EXPIRE_REFLOGS_UPDATE_REF),
-               OPT_BOOL(0, "verbose", &verbose, N_("print extra information on screen.")),
+               OPT_BOOL(0, "verbose", &verbose, N_("print extra information on screen")),
                OPT_END()
        };
 
index 33c82c3ab91d4c78fcc04c55e34816297fb02603..6332d3059834332d0843b76ba4f5e08450fdac3e 100644 (file)
@@ -1875,7 +1875,7 @@ static int module_clone(int argc, const char **argv, const char *prefix)
                OPT_STRING(0, "depth", &clone_data.depth,
                           N_("string"),
                           N_("depth for shallow clones")),
-               OPT__QUIET(&quiet, "Suppress output for cloning a submodule"),
+               OPT__QUIET(&quiet, "suppress output for cloning a submodule"),
                OPT_BOOL(0, "progress", &progress,
                           N_("force cloning progress")),
                OPT_BOOL(0, "require-init", &require_init,
diff --git a/diff.c b/diff.c
index 7d5cfd325eacca2441a4aeeb5c90b6f619ef478a..387435a4a451338faeb426e9d4de11fa5af1e8b5 100644 (file)
--- a/diff.c
+++ b/diff.c
@@ -5630,7 +5630,7 @@ static void prep_parse_options(struct diff_options *options)
                               N_("select files by diff type"),
                               PARSE_OPT_NONEG, diff_opt_diff_filter),
                { OPTION_CALLBACK, 0, "output", options, N_("<file>"),
-                 N_("Output to a specific file"),
+                 N_("output to a specific file"),
                  PARSE_OPT_NONEG, NULL, 0, diff_opt_output },
 
                OPT_END()
index 913775a14b758e5b4dd89cbce9ead4ff104abbc1..8f370cd89f17609b1245ea50440cda971d6a7458 100644 (file)
@@ -221,9 +221,9 @@ static int quote_stress_test(int argc, const char **argv)
        struct strbuf out = STRBUF_INIT;
        struct strvec args = STRVEC_INIT;
        struct option options[] = {
-               OPT_INTEGER('n', "trials", &trials, "Number of trials"),
-               OPT_INTEGER('s', "skip", &skip, "Skip <n> trials"),
-               OPT_BOOL('m', "msys2", &msys2, "Test quoting for MSYS2's sh"),
+               OPT_INTEGER('n', "trials", &trials, "number of trials"),
+               OPT_INTEGER('s', "skip", &skip, "skip <n> trials"),
+               OPT_BOOL('m', "msys2", &msys2, "test quoting for MSYS2's sh"),
                OPT_END()
        };
        const char * const usage[] = {