diff options
| author | Junio C Hamano <gitster@pobox.com> | 2025-02-25 14:19:36 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-02-25 14:19:37 -0800 |
| commit | 2ebbe2b2dbe67fcde41d0717a0ab27d2fd24566a (patch) | |
| tree | dbf1e47aa6b4422b2164aafa4425762103691e7d /refspec.h | |
| parent | 092180990de06a9be1b3d662c7e46eccceb24bb1 (diff) | |
| parent | 044b6f04f23d6c7e3c3750c9829db96b71470874 (diff) | |
| download | git-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.h | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -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. |
