libgit2

git_repository_set_head_detached

Version:

Make the repository HEAD directly point to the Commit.

If the provided committish cannot be found in the repository, the HEAD is unaltered and GIT_ENOTFOUND is returned.

If the provided committish cannot be peeled into a commit, the HEAD is unaltered and -1 is returned.

Otherwise, the HEAD will eventually be detached and will directly point to the peeled Commit.

Signature

int git_repository_set_head_detached(git_repository *repo, const git_oid *committish);

Parameters

In
repo

Repository pointer

In
committish

Object id of the Commit the HEAD should point to

Returns

int

0 on success, or an error code

Versions