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

Function repo_config_get_bool

config.c:2414–2419  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2412}
2413
2414int repo_config_get_bool(struct repository *repo,
2415 const char *key, int *dest)
2416{
2417 git_config_check_init(repo);
2418 return git_configset_get_bool(repo->config, key, dest);
2419}
2420
2421int repo_config_get_bool_or_int(struct repository *repo,
2422 const char *key, int *is_bool, int *dest)

Callers 15

fetch_pack_configFunction · 0.85
merge_recursive_configFunction · 0.85
preload_indexFunction · 0.85
is_tree_submodule_activeFunction · 0.85
write_archiveFunction · 0.85
send_packFunction · 0.85
repo_cfg_boolFunction · 0.85
fill_included_packs_allFunction · 0.85

Calls 2

git_config_check_initFunction · 0.85
git_configset_get_boolFunction · 0.85

Tested by 1

cmd__configFunction · 0.68