| 48 | }; |
| 49 | |
| 50 | static void git_apply_config(void) |
| 51 | { |
| 52 | repo_config_get_string(the_repository, "apply.whitespace", &apply_default_whitespace); |
| 53 | repo_config_get_string(the_repository, "apply.ignorewhitespace", &apply_default_ignorewhitespace); |
| 54 | repo_config(the_repository, git_xmerge_config, NULL); |
| 55 | } |
| 56 | |
| 57 | static int parse_whitespace_option(struct apply_state *state, const char *option) |
| 58 | { |
no test coverage detected