summaryrefslogtreecommitdiff
path: root/include/git2/refspec.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/git2/refspec.h')
-rw-r--r--include/git2/refspec.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/git2/refspec.h b/include/git2/refspec.h
index d45364f71..8523d5ab6 100644
--- a/include/git2/refspec.h
+++ b/include/git2/refspec.h
@@ -19,4 +19,14 @@ const char *git_refspec_src(const git_refspec *refspec);
*/
const char *git_refspec_dst(const git_refspec *refspec);
+/**
+ * Match a refspec's source descriptor with a reference name
+ *
+ * @param refspec the refspec
+ * @param refname the name of the reference to check
+ * @return GIT_SUCCESS on successful match; GIT_ENOMACH on match
+ * failure or an error code on other failure
+ */
+int git_refspec_src_match(const git_refspec *refspec, const char *refname);
+
#endif