git_tag_delete

Delete an existing tag reference.

The tag name will be checked for validity. See git_tag_create() for rules about valid names.

extern (C) nothrow @nogc
int
git_tag_delete

Parameters

repo libgit2_d.types.git_repository*

Repository where lives the tag

tag_name const(char)*

Name of the tag to be deleted; this name is validated for consistency.

Return Value

Type: int

0 on success, git_error_code.GIT_EINVALIDSPEC or an error code

Meta