Re: [PATCH v2 1/2] merge/pull: --compact-summary
From: Kristoffer Haugsbakk <hidden>
Date: 2025-06-13 12:07:43
From: Kristoffer Haugsbakk <hidden>
Date: 2025-06-13 12:07:43
On Fri, Jun 13, 2025, at 00:25, Junio C Hamano wrote:
static struct option builtin_merge_options[] = {
OPT_SET_INT('n', NULL, &show_diffstat,
N_("do not show a diffstat at the end of the merge"), 0),
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"),
+ N_("show a compactstat at the end of the merge"),
+ PARSE_OPT_NOARG,
+ option_parse_compact_summary),`compactstat` is very dense. s/compactstat/compact stat/ ?