diff options
| author | Justin Tobler <jltobler@gmail.com> | 2025-10-21 13:25:57 -0500 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-10-21 14:40:37 -0700 |
| commit | 6d1997f6cbc10ac03bc450630de4410762f77b6f (patch) | |
| tree | 7e37e1c03106b06153a242403613976d09580062 /ref-filter.h | |
| parent | eafc03dbe316478acff5eef3b70c037de4758f08 (diff) | |
| download | git-6d1997f6cbc10ac03bc450630de4410762f77b6f.tar.xz | |
ref-filter: export ref_kind_from_refname()
When filtering refs, `ref_kind_from_refname()` is used to determine the
ref type. In a subsequent commit, this same logic is reused when
counting refs by type. Export the function to prepare for this change.
Signed-off-by: Justin Tobler <jltobler@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'ref-filter.h')
| -rw-r--r-- | ref-filter.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ref-filter.h b/ref-filter.h index f22ca94b49..4ed1edf09a 100644 --- a/ref-filter.h +++ b/ref-filter.h @@ -135,6 +135,8 @@ struct ref_format { OPT_STRVEC(0, "exclude", &(var)->exclude, \ N_("pattern"), N_("exclude refs which match pattern")) +/* Get the reference kind from the provided reference name. */ +int ref_kind_from_refname(const char *refname); /* * API for filtering a set of refs. Based on the type of refs the user * has requested, we iterate through those refs and apply filters |
