path: drop git_pathdup() in favor of repo_git_path()

Remove `git_pathdup()` in favor of `repo_git_path()`. The latter does
essentially the same, with the only exception that it does not rely on
`the_repository` but takes the repo as separate parameter.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Patrick Steinhardt
2025-02-07 12:03:32 +01:00
committed by Junio C Hamano
parent 7f17900b5b
commit bba59f58a4
16 changed files with 22 additions and 36 deletions

View File

@ -938,7 +938,7 @@ static void write_refspec_config(const char *src_ref_prefix,
static void dissociate_from_references(void)
{
char *alternates = git_pathdup("objects/info/alternates");
char *alternates = repo_git_path(the_repository, "objects/info/alternates");
if (!access(alternates, F_OK)) {
struct child_process cmd = CHILD_PROCESS_INIT;