mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-23 21:24:59 +00:00
code_style: run dotnet format
This commit is contained in:
parent
1dffb2ebf5
commit
9d3f186b44
10 changed files with 17 additions and 16 deletions
|
@ -1,6 +1,6 @@
|
|||
using System;
|
||||
using System.Text.Json.Serialization;
|
||||
using System.Text.Json;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
using Avalonia.Controls;
|
||||
|
||||
|
|
|
@ -442,7 +442,7 @@ namespace SourceGit.ViewModels
|
|||
else
|
||||
{
|
||||
visible = new Commands.QueryCommits(FullPath, $"-1000 -- \"{_searchCommitFilter}\"", false).Result();
|
||||
}
|
||||
}
|
||||
|
||||
SearchedCommits = visible;
|
||||
}
|
||||
|
@ -1002,7 +1002,7 @@ namespace SourceGit.ViewModels
|
|||
menu.Items.Add(new MenuItem() { Header = "-" });
|
||||
|
||||
menu.Items.Add(compareWithBranch);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var type = GitFlow.GetBranchType(branch.Name);
|
||||
|
|
|
@ -24,7 +24,7 @@ namespace SourceGit.ViewModels
|
|||
_repo = repo;
|
||||
_oldMessage = new Commands.QueryCommitFullMessage(_repo.FullPath, head.SHA).Result();
|
||||
_message = _oldMessage;
|
||||
|
||||
|
||||
Head = head;
|
||||
View = new Views.Reword() { DataContext = this };
|
||||
}
|
||||
|
|
|
@ -28,7 +28,7 @@ namespace SourceGit.ViewModels
|
|||
{
|
||||
_repo = repo;
|
||||
_message = new Commands.QueryCommitFullMessage(_repo.FullPath, parent.SHA).Result();
|
||||
|
||||
|
||||
Head = head;
|
||||
Parent = parent;
|
||||
View = new Views.Squash() { DataContext = this };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue