diff options
author | Nikolai Vladimirov <nikolay@vladimiroff.com> | 2013-08-25 15:59:50 +0300 |
---|---|---|
committer | Nikolai Vladimirov <nikolay@vladimiroff.com> | 2013-08-26 08:04:10 +0300 |
commit | 504850cdf56190a61782abfec37f3533b42d769e (patch) | |
tree | a2a1009690f4b65a8989a34182faa2b979f17a1f /include/git2/refs.h | |
parent | a07db1a1e03c42da5e9132c86776cb5c1ab89214 (diff) | |
download | libgit2-504850cdf56190a61782abfec37f3533b42d769e.tar.gz |
refs: add git_reference_is_tag
Diffstat (limited to 'include/git2/refs.h')
-rw-r--r-- | include/git2/refs.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/git2/refs.h b/include/git2/refs.h index 205bfe59d..4871e9820 100644 --- a/include/git2/refs.h +++ b/include/git2/refs.h @@ -442,6 +442,15 @@ GIT_EXTERN(int) git_reference_is_branch(git_reference *ref); */ GIT_EXTERN(int) git_reference_is_remote(git_reference *ref); +/** + * Check if a reference is a tag + * + * @param ref A git reference + * + * @return 1 when the reference lives in the refs/tags + * namespace; 0 otherwise. + */ +GIT_EXTERN(int) git_reference_is_tag(git_reference *ref); typedef enum { GIT_REF_FORMAT_NORMAL = 0, |