summaryrefslogtreecommitdiff
path: root/ref-filter.c
diff options
context:
space:
mode:
authorRubén Justo <rjusto@gmail.com>2023-09-09 20:12:47 (GMT)
committerJunio C Hamano <gitster@pobox.com>2023-10-16 22:05:27 (GMT)
commit990adccbdf0d8d1056c49a5ed546e744f542ba8f (patch)
tree40928cf1aad4e70c8338bed47421e2c48c511d42 /ref-filter.c
parentfb7d80edcae482f4fa5d4be0227dc3054734e5f3 (diff)
downloadgit-990adccbdf0d8d1056c49a5ed546e744f542ba8f.zip
git-990adccbdf0d8d1056c49a5ed546e744f542ba8f.tar.gz
git-990adccbdf0d8d1056c49a5ed546e744f542ba8f.tar.bz2
status: fix branch shown when not only bisecting
In 83c750acde (wt-status.*: better advice for git status added, 2012-06-05), git-status received new informative messages to describe the ongoing work in a worktree. These messages were enhanced in 0722c805d6 (status: show the branch name if possible in in-progress info, 2013-02-03), to show, if possible, the branch where the operation was initiated. Since then, we show incorrect information when several operations are in progress and one of them is bisect: $ git checkout -b foo $ GIT_SEQUENCE_EDITOR='echo break >' git rebase -i HEAD~ $ git checkout -b bar $ git bisect start $ git status ... You are currently editing a commit while rebasing branch 'bar' on '...'. You are currently bisecting, started from branch 'bar'. ... Note that we erroneously say "while rebasing branch 'bar'" when we should be referring to "foo". This must have gone unnoticed for so long because it must be unusual to start a bisection while another operation is in progress. And even less usual to involve different branches. It caught my attention reviewing a leak introduced in 8b87cfd000 (wt-status: move strbuf into read_and_strip_branch(), 2013-03-16). A simple change to deal with this situation can be to record in struct wt_status_state, the branch where the bisect starts separately from the branch related to other operations. Let's do it and so we'll be able to display correct information and we'll avoid the leak as well. Signed-off-by: Rubén Justo <rjusto@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'ref-filter.c')
-rw-r--r--ref-filter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ref-filter.c b/ref-filter.c
index 4991cd4..2347774 100644
--- a/ref-filter.c
+++ b/ref-filter.c
@@ -1773,7 +1773,7 @@ char *get_head_description(void)
state.detached_from);
} else if (state.bisect_in_progress)
strbuf_addf(&desc, _("(no branch, bisect started on %s)"),
- state.branch);
+ state.bisecting_from);
else if (state.detached_from) {
if (state.detached_at)
strbuf_addf(&desc, _("(HEAD detached at %s)"),