| 2887 | } |
| 2888 | |
| 2889 | void repo_config_set_in_file(struct repository *r, const char *config_filename, |
| 2890 | const char *key, const char *value) |
| 2891 | { |
| 2892 | repo_config_set_multivar_in_file(r, config_filename, key, value, NULL, 0); |
| 2893 | } |
| 2894 | |
| 2895 | int repo_config_set_gently(struct repository *r, const char *key, const char *value) |
| 2896 | { |
no test coverage detected