| 1484 | } |
| 1485 | |
| 1486 | static void print_rebase_state(struct wt_status *s, |
| 1487 | const char *color) |
| 1488 | { |
| 1489 | if (s->state.branch) |
| 1490 | status_printf_ln(s, color, |
| 1491 | _("You are currently rebasing branch '%s' on '%s'."), |
| 1492 | s->state.branch, |
| 1493 | s->state.onto); |
| 1494 | else |
| 1495 | status_printf_ln(s, color, |
| 1496 | _("You are currently rebasing.")); |
| 1497 | } |
| 1498 | |
| 1499 | static void show_rebase_in_progress(struct wt_status *s, |
| 1500 | const char *color) |
no test coverage detected