]> git.ipfire.org Git - thirdparty/git.git/commitdiff
merge: don't document non-existing --compact-summary argument
authorRené Scharfe <l.s.r@web.de>
Sat, 9 Aug 2025 10:00:16 +0000 (12:00 +0200)
committerJunio C Hamano <gitster@pobox.com>
Sun, 10 Aug 2025 00:11:19 +0000 (17:11 -0700)
3a54f5bd5d (merge/pull: add the "--compact-summary" option, 2025-06-12)
added the option --compact-summary to both merge and pull.  It takes no
no argument, but for merge it got an argument help string.  Remove it,
since it is unnecessary.

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

index 18b22c0a26d6337a7c68075326c2367f5cfe5986..0d39c655e9e6b3580287bdf040725b292e4746b6 100644 (file)
@@ -264,7 +264,7 @@ static struct option builtin_merge_options[] = {
        OPT_BOOL(0, "stat", &show_diffstat,
                N_("show a diffstat at the end of the merge")),
        OPT_BOOL(0, "summary", &show_diffstat, N_("(synonym to --stat)")),
-       OPT_CALLBACK_F(0, "compact-summary", &show_diffstat, N_("compact-summary"),
+       OPT_CALLBACK_F(0, "compact-summary", &show_diffstat, NULL,
                       N_("show a compact-summary at the end of the merge"),
                       PARSE_OPT_NOARG,
                       option_parse_compact_summary),