aboutsummaryrefslogtreecommitdiffstats
path: root/builtin
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2025-08-11 21:30:15 -0700
committerJunio C Hamano <gitster@pobox.com>2025-08-11 21:30:15 -0700
commit10fa89aadcc022babf0b60e0a67a2d2661af768d (patch)
treee29da3865dcdea315263a7e881582366e346871b /builtin
parent2c2ba49d55ff26c1082b8137b1ec5eeccb4337d1 (diff)
parent51d9ed581f37a27c1060e8ba54303f7aefca9756 (diff)
downloadgit-10fa89aadcc022babf0b60e0a67a2d2661af768d.tar.gz
Merge branch 'rs/for-each-ref-start-after-marker-fix'
Hotfix. * rs/for-each-ref-start-after-marker-fix: for-each-ref: call --start-after argument "marker"
Diffstat (limited to 'builtin')
-rw-r--r--builtin/for-each-ref.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/for-each-ref.c b/builtin/for-each-ref.c
index 8b5fe7b65e..222637a2c0 100644
--- a/builtin/for-each-ref.c
+++ b/builtin/for-each-ref.c
@@ -46,7 +46,7 @@ int cmd_for_each_ref(int argc,
OPT_GROUP(""),
OPT_INTEGER( 0 , "count", &format.array_opts.max_count, N_("show only <n> matched refs")),
OPT_STRING( 0 , "format", &format.format, N_("format"), N_("format to use for the output")),
- OPT_STRING( 0 , "start-after", &filter.start_after, N_("start-after"), N_("start iteration after the provided marker")),
+ OPT_STRING( 0 , "start-after", &filter.start_after, N_("marker"), N_("start iteration after the provided marker")),
OPT__COLOR(&format.use_color, N_("respect format colors")),
OPT_REF_FILTER_EXCLUDE(&filter),
OPT_REF_SORT(&sorting_options),