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

Function repo_common_path_append

path.c:657–666  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

655}
656
657const char *repo_common_path_append(const struct repository *repo,
658 struct strbuf *sb,
659 const char *fmt, ...)
660{
661 va_list args;
662 va_start(args, fmt);
663 repo_common_pathv(repo, sb, fmt, args);
664 va_end(args);
665 return sb->buf;
666}
667
668const char *repo_common_path_replace(const struct repository *repo,
669 struct strbuf *sb,

Callers 6

strbuf_worktree_gitdirFunction · 0.85
get_linked_worktreeFunction · 0.85
get_worktree_ref_storeFunction · 0.85
delete_git_dirFunction · 0.85

Calls 1

repo_common_pathvFunction · 0.85

Tested by

no test coverage detected