1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-09-16 09:16:26 +02:00

only show commits from start ref if bad commit is reachable from there

This commit is contained in:
Jesse Duffield
2022-01-26 15:17:11 +11:00
parent dc765c4166
commit ca7cfc3232
3 changed files with 26 additions and 9 deletions

View File

@@ -175,7 +175,7 @@ func getBisectStatus(commitSha string, bisectInfo *git_commands.BisectInfo, bise
return BisectStatusSkipped, bisectProgress
}
} else {
if bisectProgress == InbetweenCommits {
if bisectProgress == InbetweenCommits && bisectInfo.Bisecting() {
return BisectStatusCandidate, bisectProgress
} else {
return BisectStatusNone, bisectProgress