summaryrefslogtreecommitdiff
path: root/tests-clar/repo/repo_helpers.c
blob: 35271feaa1236edcd2781ed102b51414a9f9f42d (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "clar_libgit2.h"
#include "refs.h"
#include "repo_helpers.h"

void make_head_orphaned(git_repository* repo, const char *target)
{
	git_reference *head;

	cl_git_pass(git_reference_create_symbolic(&head, repo, GIT_HEAD_FILE, target, 1));
	git_reference_free(head);
}