We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 957c52a commit c5ad4b8Copy full SHA for c5ad4b8
src/ViewModels/Repository.cs
@@ -1090,6 +1090,7 @@ public void Bisect(string subcmd)
1090
var succ = new Commands.Bisect(_fullpath, subcmd).Use(log).Exec();
1091
log.Complete();
1092
1093
+ var head = new Commands.QueryRevisionByRefName(_fullpath, "HEAD").Result();
1094
Dispatcher.UIThread.Invoke(() =>
1095
{
1096
if (!succ)
@@ -1098,6 +1099,7 @@ public void Bisect(string subcmd)
1098
1099
App.SendNotification(_fullpath, log.Content.Substring(log.Content.IndexOf('\n')).Trim());
1100
1101
MarkBranchesDirtyManually();
1102
+ NavigateToCommit(head, true);
1103
SetWatcherEnabled(true);
1104
IsBisectCommandRunning = false;
1105
});
0 commit comments