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.
git bisect
1 parent 9a6c671 commit f2000b4Copy full SHA for f2000b4
src/ViewModels/Repository.cs
@@ -965,9 +965,9 @@ public void Bisect(string subcmd)
965
Dispatcher.UIThread.Invoke(() =>
966
{
967
if (!succ)
968
- App.RaiseException(_fullpath, log.Content);
+ App.RaiseException(_fullpath, log.Content.Substring(log.Content.IndexOf('\n')).Trim());
969
else if (log.Content.Contains("is the first bad commit"))
970
- App.SendNotification(_fullpath, log.Content);
+ App.SendNotification(_fullpath, log.Content.Substring(log.Content.IndexOf('\n')).Trim());
971
972
MarkBranchesDirtyManually();
973
SetWatcherEnabled(true);
0 commit comments