refs: add exclude_patterns parameter to for_each_fullref_in()

The `for_each_fullref_in()` function is supposedly the ref-store-less
equivalent of `refs_for_each_fullref_in()`, but the latter has gained a
new parameter `exclude_patterns` over time. Bring these two functions
back in sync again by adding the parameter to the former function, as
well.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Patrick Steinhardt
2024-05-07 09:11:44 +02:00
committed by Junio C Hamano
parent 39a9ef8fc4
commit 54876c6dfb
5 changed files with 16 additions and 13 deletions

View File

@ -908,8 +908,8 @@ int cmd_rev_parse(int argc, const char **argv, const char *prefix)
continue;
}
if (!strcmp(arg, "--bisect")) {
for_each_fullref_in("refs/bisect/bad", show_reference, NULL);
for_each_fullref_in("refs/bisect/good", anti_reference, NULL);
for_each_fullref_in("refs/bisect/bad", NULL, show_reference, NULL);
for_each_fullref_in("refs/bisect/good", NULL, anti_reference, NULL);
continue;
}
if (opt_with_value(arg, "--branches", &arg)) {