Hash :
95117d47
Author :
Date :
2021-10-31T09:45:46
path: separate git-specific path functions from util Introduce `git_fs_path`, which operates on generic filesystem paths. `git_path` will be kept for only git-specific path functionality (for example, checking for `.git` in a path).
#include "git2/repository.h"
#include "git2/refs.h"
#include "common.h"
#include "util.h"
#include "path.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;
}