MCPcopy Index your code
hub / github.com/git/git / repo_git_path_append

Function repo_git_path_append

path.c:444–453  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

442}
443
444const char *repo_git_path_append(struct repository *repo,
445 struct strbuf *sb,
446 const char *fmt, ...)
447{
448 va_list args;
449 va_start(args, fmt);
450 repo_git_pathv(repo, NULL, sb, fmt, args);
451 va_end(args);
452 return sb->buf;
453}
454
455const char *repo_git_path_replace(struct repository *repo,
456 struct strbuf *sb,

Callers 9

submodule_name_to_gitdirFunction · 0.85
read_remotes_fileFunction · 0.85
read_branches_fileFunction · 0.85
read_line_from_git_pathFunction · 0.85
read_rebase_todolistFunction · 0.85
module_migrateFunction · 0.85

Calls 1

repo_git_pathvFunction · 0.85

Tested by

no test coverage detected