Git fork

for-each-ref: call --start-after argument "marker"

dabecb9db2 (for-each-ref: introduce a '--start-after' option,
2025-07-15) added the option --start-after and referred to its argument
as "marker" in documentation and usage string, but not in the option's
short help. Use "marker" there as well for consistency and brevity.

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

authored by

René Scharfe and committed by
Junio C Hamano
51d9ed58 444ad14e

+1 -1
+1 -1
builtin/for-each-ref.c
··· 45 45 OPT_GROUP(""), 46 46 OPT_INTEGER( 0 , "count", &format.array_opts.max_count, N_("show only <n> matched refs")), 47 47 OPT_STRING( 0 , "format", &format.format, N_("format"), N_("format to use for the output")), 48 - OPT_STRING( 0 , "start-after", &filter.start_after, N_("start-after"), N_("start iteration after the provided marker")), 48 + OPT_STRING( 0 , "start-after", &filter.start_after, N_("marker"), N_("start iteration after the provided marker")), 49 49 OPT__COLOR(&format.use_color, N_("respect format colors")), 50 50 OPT_REF_FILTER_EXCLUDE(&filter), 51 51 OPT_REF_SORT(&sorting_options),