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

Function repo_config_get_value

config.c:2350–2355  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2348}
2349
2350int repo_config_get_value(struct repository *repo,
2351 const char *key, const char **value)
2352{
2353 git_config_check_init(repo);
2354 return git_configset_get_value(repo->config, key, value, NULL);
2355}
2356
2357int repo_config_get_value_multi(struct repository *repo, const char *key,
2358 const struct string_list **dest)

Callers 13

use_sideband_colorsFunction · 0.85
fetch_bundles_by_tokenFunction · 0.85
init_colorFunction · 0.85
check_color_configFunction · 0.85
check_vfs4gitFunction · 0.85
cmd__configFunction · 0.85
config_get_ffFunction · 0.85
config_get_rebaseFunction · 0.85

Calls 2

git_config_check_initFunction · 0.85
git_configset_get_valueFunction · 0.85

Tested by 1

cmd__configFunction · 0.68