| 3502 | } |
| 3503 | |
| 3504 | static int skip_single_pick(void) |
| 3505 | { |
| 3506 | struct object_id head; |
| 3507 | |
| 3508 | if (refs_read_ref_full(get_main_ref_store(the_repository), "HEAD", 0, &head, NULL)) |
| 3509 | return error(_("cannot resolve HEAD")); |
| 3510 | return reset_merge(&head); |
| 3511 | } |
| 3512 | |
| 3513 | int sequencer_rollback(struct repository *r, struct replay_opts *opts) |
| 3514 | { |
no test coverage detected