aboutsummaryrefslogtreecommitdiff
path: root/builtin
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2013-03-23 10:52:44 +0700
committerJunio C Hamano <gitster@pobox.com>2013-03-23 22:29:15 -0700
commit6deab24d8832e3cb2f554b827af521b094a2b32d (patch)
tree2c43d7ee4bfd9469c470dd4f1a9707f56f7a4f99 /builtin
parentc8183cd2851965665655738fc399c44f546d5b79 (diff)
downloadgit-6deab24d8832e3cb2f554b827af521b094a2b32d.tar.gz
git-6deab24d8832e3cb2f554b827af521b094a2b32d.tar.xz
status, branch: fix the misleading "bisecting" message
The current message is "bisecting %s" (or "bisecting branch %s"). "%s" is the current branch when we started bisecting. Clarify that to avoid confusion with good and bad refs passed to "bisect" command. Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r--builtin/branch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/branch.c b/builtin/branch.c
index 99105f8b1..8f00203d7 100644
--- a/builtin/branch.c
+++ b/builtin/branch.c
@@ -562,7 +562,7 @@ static char *get_head_description(void)
strbuf_addf(&desc, _("(no branch, rebasing %s)"),
state.branch);
else if (state.bisect_in_progress)
- strbuf_addf(&desc, _("(no branch, bisecting %s)"),
+ strbuf_addf(&desc, _("(no branch, bisect started on %s)"),
state.branch);
else if (state.detached_from)
strbuf_addf(&desc, _("(detached from %s)"),