libgit2

git_tag_name_is_valid

Version:

Determine whether a tag name is valid, meaning that (when prefixed with refs/tags/) that it is a valid reference name, and that any additional tag name restrictions are imposed (eg, it cannot start with a -).

Signature

int git_tag_name_is_valid(int *valid, const char *name);

Parameters

int *
In
valid

output pointer to set with validity of given tag name

const char *
In
name

a tag name to test

Returns

int

0 on success or an error code

Versions