summaryrefslogtreecommitdiff
path: root/wt-status.c
diff options
context:
space:
mode:
authorGuillaume Pagès <guillaume.pages@ensimag.grenoble-inp.fr>2015-06-30 13:01:12 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-06-30 18:12:30 (GMT)
commit05eb5635537bac0494bfd8cf41fa5502e05b6fd6 (patch)
treebb7eba196986ff15593929b098a43bd8285b892e /wt-status.c
parent7974889a053574e449b55ca543a486e38e74864f (diff)
downloadgit-05eb5635537bac0494bfd8cf41fa5502e05b6fd6.zip
git-05eb5635537bac0494bfd8cf41fa5502e05b6fd6.tar.gz
git-05eb5635537bac0494bfd8cf41fa5502e05b6fd6.tar.bz2
status: factor two rebase-related messages together
Signed-off-by: Guillaume Pagès <guillaume.pages@ensimag.grenoble-inp.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com> Signed-off-by: Matthieu Moy <Matthieu.Moy@imag.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'wt-status.c')
-rw-r--r--wt-status.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/wt-status.c b/wt-status.c
index c56c78f..9e0559c 100644
--- a/wt-status.c
+++ b/wt-status.c
@@ -1026,6 +1026,20 @@ static int split_commit_in_progress(struct wt_status *s)
return split_in_progress;
}
+static void print_rebase_state(struct wt_status *s,
+ struct wt_status_state *state,
+ const char *color)
+{
+ if (state->branch)
+ status_printf_ln(s, color,
+ _("You are currently rebasing branch '%s' on '%s'."),
+ state->branch,
+ state->onto);
+ else
+ status_printf_ln(s, color,
+ _("You are currently rebasing."));
+}
+
static void show_rebase_in_progress(struct wt_status *s,
struct wt_status_state *state,
const char *color)
@@ -1033,14 +1047,7 @@ static void show_rebase_in_progress(struct wt_status *s,
struct stat st;
if (has_unmerged(s)) {
- if (state->branch)
- status_printf_ln(s, color,
- _("You are currently rebasing branch '%s' on '%s'."),
- state->branch,
- state->onto);
- else
- status_printf_ln(s, color,
- _("You are currently rebasing."));
+ print_rebase_state(s, state, color);
if (s->hints) {
status_printf_ln(s, color,
_(" (fix conflicts and then run \"git rebase --continue\")"));
@@ -1050,14 +1057,7 @@ static void show_rebase_in_progress(struct wt_status *s,
_(" (use \"git rebase --abort\" to check out the original branch)"));
}
} else if (state->rebase_in_progress || !stat(git_path("MERGE_MSG"), &st)) {
- if (state->branch)
- status_printf_ln(s, color,
- _("You are currently rebasing branch '%s' on '%s'."),
- state->branch,
- state->onto);
- else
- status_printf_ln(s, color,
- _("You are currently rebasing."));
+ print_rebase_state(s, state, color);
if (s->hints)
status_printf_ln(s, color,
_(" (all conflicts fixed: run \"git rebase --continue\")"));