| 1609 | } |
| 1610 | |
| 1611 | static void show_bisect_in_progress(struct wt_status *s, |
| 1612 | const char *color) |
| 1613 | { |
| 1614 | if (s->state.bisecting_from) |
| 1615 | status_printf_ln(s, color, |
| 1616 | _("You are currently bisecting, started from branch '%s'."), |
| 1617 | s->state.bisecting_from); |
| 1618 | else |
| 1619 | status_printf_ln(s, color, |
| 1620 | _("You are currently bisecting.")); |
| 1621 | if (s->hints) |
| 1622 | status_printf_ln(s, color, |
| 1623 | _(" (use \"git bisect reset\" to get back to the original branch)")); |
| 1624 | wt_longstatus_print_trailer(s); |
| 1625 | } |
| 1626 | |
| 1627 | static void show_sparse_checkout_in_use(struct wt_status *s, |
| 1628 | const char *color) |
no test coverage detected