git_tag_create_lightweight

Create a new lightweight tag pointing at a target object

A new direct reference will be created pointing to this target object. If force is true and a reference already exists with the given name, it'll be replaced.

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

extern (C) nothrow @nogc
int
git_tag_create_lightweight

Parameters

oid libgit2_d.oid.git_oid*

Pointer where to store the OID of the provided target object. If the tag already exists, this parameter will be filled with the oid of the existing pointed object and the function will return a git_error_code.GIT_EEXISTS error code.

repo libgit2_d.types.git_repository*

Repository where to store the lightweight tag

tag_name const(char)*

Name for the tag; this name is validated for consistency. It should also not conflict with an already existing tag name

target const(libgit2_d.types.git_object)*

Object to which this tag points. This object must belong to the given repo.

force int

Overwrite existing references

Return Value

Type: int

0 on success, git_error_code.GIT_EINVALIDSPEC or an error code A proper reference is written in the /refs/tags folder, pointing to the provided target object

Meta