mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-21 12:15:00 +00:00
enhance: show git log without command itself for git bisect
Signed-off-by: leo <longshuang@msn.cn>
This commit is contained in:
parent
9a6c671a96
commit
f2000b4a84
1 changed files with 2 additions and 2 deletions
|
@ -965,9 +965,9 @@ namespace SourceGit.ViewModels
|
||||||
Dispatcher.UIThread.Invoke(() =>
|
Dispatcher.UIThread.Invoke(() =>
|
||||||
{
|
{
|
||||||
if (!succ)
|
if (!succ)
|
||||||
App.RaiseException(_fullpath, log.Content);
|
App.RaiseException(_fullpath, log.Content.Substring(log.Content.IndexOf('\n')).Trim());
|
||||||
else if (log.Content.Contains("is the first bad commit"))
|
else if (log.Content.Contains("is the first bad commit"))
|
||||||
App.SendNotification(_fullpath, log.Content);
|
App.SendNotification(_fullpath, log.Content.Substring(log.Content.IndexOf('\n')).Trim());
|
||||||
|
|
||||||
MarkBranchesDirtyManually();
|
MarkBranchesDirtyManually();
|
||||||
SetWatcherEnabled(true);
|
SetWatcherEnabled(true);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue