summaryrefslogtreecommitdiff
path: root/tests/libgit2/refs/ref_helpers.c
blob: 70d5d36d540db8bd818e4a0e1b29fc8aae83d2b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include "git2/repository.h"
#include "git2/refs.h"
#include "common.h"
#include "util.h"
#include "path.h"
#include "ref_helpers.h"

int reference_is_packed(git_reference *ref)
{
	git_str ref_path = GIT_STR_INIT;
	int packed;

	assert(ref);

	if (git_str_joinpath(&ref_path,
		git_repository_path(git_reference_owner(ref)),
		git_reference_name(ref)) < 0)
		return -1;

	packed = !git_fs_path_isfile(ref_path.ptr);

	git_str_dispose(&ref_path);

	return packed;
}