| 2325 | } |
| 2326 | |
| 2327 | void repo_config_clear(struct repository *repo) |
| 2328 | { |
| 2329 | if (!repo->config || !repo->config->hash_initialized) |
| 2330 | return; |
| 2331 | git_configset_clear(repo->config); |
| 2332 | } |
| 2333 | |
| 2334 | void repo_config(struct repository *repo, config_fn_t fn, void *data) |
| 2335 | { |
no test coverage detected