| 2318 | } |
| 2319 | |
| 2320 | static void git_config_check_init(struct repository *repo) |
| 2321 | { |
| 2322 | if (repo->config && repo->config->hash_initialized) |
| 2323 | return; |
| 2324 | repo_read_config(repo); |
| 2325 | } |
| 2326 | |
| 2327 | void repo_config_clear(struct repository *repo) |
| 2328 | { |
no test coverage detected