| 724 | } |
| 725 | |
| 726 | static int is_expected_rev(const struct object_id *oid) |
| 727 | { |
| 728 | struct object_id expected_oid; |
| 729 | if (refs_read_ref(get_main_ref_store(the_repository), "BISECT_EXPECTED_REV", &expected_oid)) |
| 730 | return 0; |
| 731 | return oideq(oid, &expected_oid); |
| 732 | } |
| 733 | |
| 734 | enum bisect_error bisect_checkout(const struct object_id *bisect_rev, |
| 735 | int no_checkout) |
no test coverage detected