| 2348 | } |
| 2349 | |
| 2350 | int 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 | |
| 2357 | int repo_config_get_value_multi(struct repository *repo, const char *key, |
| 2358 | const struct string_list **dest) |