libgit2

git_reference_delete

Version:

Delete an existing reference.

This method works for both direct and symbolic references. The reference will be immediately removed on disk but the memory will not be freed. Callers must call git_reference_free.

This function will return an error if the reference has changed from the time it was looked up.

Signature

int git_reference_delete(git_reference *ref);

Parameters

In
ref

The reference to remove

Returns

int

0, GIT_EMODIFIED or an error code

Versions