diff --git a/src/Views/RepositoryToolbar.axaml.cs b/src/Views/RepositoryToolbar.axaml.cs index aa81f858..cbd0041a 100644 --- a/src/Views/RepositoryToolbar.axaml.cs +++ b/src/Views/RepositoryToolbar.axaml.cs @@ -124,6 +124,8 @@ namespace SourceGit.Views { if (repo.LocalChangesCount > 0) App.RaiseException(repo.FullPath, "You have un-committed local changes. Please discard or stash them first."); + else if (repo.IsBisectCommandRunning || repo.BisectState != Models.BisectState.None) + App.RaiseException(repo.FullPath, "Bisect is running! Please abort it before starting a new one."); else repo.Bisect("start"); }