mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-03 02:40:09 +00:00
11 lines
279 B
C
11 lines
279 B
C
#include "clar_libgit2.h"
|
|
#include "reset_helpers.h"
|
|
|
|
void retrieve_target_from_oid(git_object **object_out, git_repository *repo, const char *sha)
|
|
{
|
|
git_oid oid;
|
|
|
|
cl_git_pass(git_oid_fromstr(&oid, sha));
|
|
cl_git_pass(git_object_lookup(object_out, repo, &oid, GIT_OBJ_ANY));
|
|
}
|