]> git.ipfire.org Git - thirdparty/git.git/commitdiff
history: fix short help for argument of --update-refs
authorRené Scharfe <l.s.r@web.de>
Mon, 6 Apr 2026 09:31:21 +0000 (11:31 +0200)
committerJunio C Hamano <gitster@pobox.com>
Mon, 6 Apr 2026 17:17:36 +0000 (10:17 -0700)
"print" is not a valid argument for --update-refs.  List both valid
alternatives literally in the argh string, consistent with documentation
and usage string.

Signed-off-by: René Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/history.c

index 568dc75ee7b1a2feb2530621de6fe9ac84faeec5..952693808574b794363d61b6fd49465d1455cda5 100644 (file)
@@ -437,8 +437,8 @@ static int cmd_history_reword(int argc,
        enum ref_action action = REF_ACTION_DEFAULT;
        int dry_run = 0;
        struct option options[] = {
-               OPT_CALLBACK_F(0, "update-refs", &action, N_("<action>"),
-                              N_("control which refs should be updated (branches|head)"),
+               OPT_CALLBACK_F(0, "update-refs", &action, "(branches|head)",
+                              N_("control which refs should be updated"),
                               PARSE_OPT_NONEG, parse_ref_action),
                OPT_BOOL('n', "dry-run", &dry_run,
                         N_("perform a dry-run without updating any refs")),
@@ -666,8 +666,8 @@ static int cmd_history_split(int argc,
        enum ref_action action = REF_ACTION_DEFAULT;
        int dry_run = 0;
        struct option options[] = {
-               OPT_CALLBACK_F(0, "update-refs", &action, N_("<refs>"),
-                              N_("control ref update behavior (branches|head|print)"),
+               OPT_CALLBACK_F(0, "update-refs", &action, "(branches|head)",
+                              N_("control ref update behavior"),
                               PARSE_OPT_NONEG, parse_ref_action),
                OPT_BOOL('n', "dry-run", &dry_run,
                         N_("perform a dry-run without updating any refs")),