aboutsummaryrefslogtreecommitdiffstats
path: root/refspec.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2025-02-25 14:19:36 -0800
committerJunio C Hamano <gitster@pobox.com>2025-02-25 14:19:37 -0800
commit2ebbe2b2dbe67fcde41d0717a0ab27d2fd24566a (patch)
treedbf1e47aa6b4422b2164aafa4425762103691e7d /refspec.h
parent092180990de06a9be1b3d662c7e46eccceb24bb1 (diff)
parent044b6f04f23d6c7e3c3750c9829db96b71470874 (diff)
downloadgit-2ebbe2b2dbe67fcde41d0717a0ab27d2fd24566a.tar.gz
Merge branch 'ms/rename-match-name-with-pattern'
Code renaming. * ms/rename-match-name-with-pattern: refspec: clarify function naming and documentation
Diffstat (limited to 'refspec.h')
-rw-r--r--refspec.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/refspec.h b/refspec.h
index f62f83a7ee..e2b5cc54ef 100644
--- a/refspec.h
+++ b/refspec.h
@@ -75,11 +75,12 @@ void refspec_ref_prefixes(const struct refspec *rs,
int refname_matches_negative_refspec_item(const char *refname, struct refspec *rs);
/*
- * Checks whether a name matches a pattern and optionally generates a result.
- * Returns 1 if the name matches the pattern, 0 otherwise.
+ * Checks if a refname matches a globbing refspec pattern.
+ * If replacement is provided, computes the corresponding mapped refname.
+ * Returns 1 if refname matches pattern, 0 otherwise.
*/
-int match_name_with_pattern(const char *key, const char *name,
- const char *value, char **result);
+int match_refname_with_pattern(const char *pattern, const char *refname,
+ const char *replacement, char **result);
/*
* Queries a refspec for a match and updates the query item.