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

Function git_config_bool

config.c:1292–1298  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1290}
1291
1292int git_config_bool(const char *name, const char *value)
1293{
1294 int v = git_parse_maybe_bool(value);
1295 if (v < 0)
1296 die(_("bad boolean config value '%s' for '%s'"), value, name);
1297 return v;
1298}
1299
1300int git_config_string(char **dest, const char *var, const char *value)
1301{

Callers 15

git_configset_get_boolFunction · 0.85
read_worktree_configFunction · 0.85
handle_extension_v0Function · 0.85
handle_extensionFunction · 0.85
git_config_permFunction · 0.85
credential_readFunction · 0.85
upload_pack_configFunction · 0.85
tar_filter_configFunction · 0.85

Calls 2

git_parse_maybe_boolFunction · 0.85
dieFunction · 0.70

Tested by

no test coverage detected