From a990999e0df3d0518a2fef60feb1ec269e36ada6 Mon Sep 17 00:00:00 2001 From: Andy Parkins Date: Thu, 14 Dec 2006 15:25:23 +0000 Subject: [PATCH] git-status always says what branch it's on If the current branch was "master" then git-status wouldn't say # On branch XXXX In its output. This patch makes it so that this message is always output; regardless of branch name. Signed-off-by: Andy Parkins Signed-off-by: Junio C Hamano --- wt-status.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wt-status.c b/wt-status.c index c388ce1293..cface6ca88 100644 --- a/wt-status.c +++ b/wt-status.c @@ -271,7 +271,7 @@ static void wt_status_print_verbose(struct wt_status *s) void wt_status_print(struct wt_status *s) { - if (s->branch && strcmp(s->branch, "refs/heads/master")) + if (s->branch) color_printf_ln(color(WT_STATUS_HEADER), "# On branch %s", s->branch); -- GitLab