| 63 | } |
| 64 | |
| 65 | static int print_tool_help(void) |
| 66 | { |
| 67 | struct child_process cmd = CHILD_PROCESS_INIT; |
| 68 | |
| 69 | cmd.git_cmd = 1; |
| 70 | strvec_pushl(&cmd.args, "mergetool", "--tool-help=diff", NULL); |
| 71 | return run_command(&cmd); |
| 72 | } |
| 73 | |
| 74 | static int parse_index_info(struct repository *repo, |
| 75 | char *p, int *mode1, int *mode2, |
no test coverage detected