MCPcopy Create free account
hub / github.com/git/git / repo_config_get

Function repo_config_get

config.c:2344–2348  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2342}
2343
2344int repo_config_get(struct repository *repo, const char *key)
2345{
2346 git_config_check_init(repo);
2347 return git_configset_get(repo->config, key);
2348}
2349
2350int repo_config_get_value(struct repository *repo,
2351 const char *key, const char **value)

Callers 5

cmd__configFunction · 0.85
module_initFunction · 0.85
module_updateFunction · 0.85
maintenance_registerFunction · 0.85

Calls 2

git_config_check_initFunction · 0.85
git_configset_getFunction · 0.85

Tested by 1

cmd__configFunction · 0.68