| 472 | } |
| 473 | |
| 474 | static int read_bisect_refs(void) |
| 475 | { |
| 476 | struct refs_for_each_ref_options opts = { |
| 477 | .prefix = "refs/bisect/", |
| 478 | .trim_prefix = strlen("refs/bisect/"), |
| 479 | }; |
| 480 | return refs_for_each_ref_ext(get_main_ref_store(the_repository), |
| 481 | register_ref, NULL, &opts); |
| 482 | } |
| 483 | |
| 484 | static GIT_PATH_FUNC(git_path_bisect_names, "BISECT_NAMES") |
| 485 | static GIT_PATH_FUNC(git_path_bisect_ancestors_ok, "BISECT_ANCESTORS_OK") |
no test coverage detected