mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-24 20:57:19 -08:00
code_style: run dotnet format
This commit is contained in:
parent
2e87f83a38
commit
ec6fe25e87
10 changed files with 13 additions and 33 deletions
|
@ -6,7 +6,6 @@ namespace SourceGit.Commands
|
||||||
{
|
{
|
||||||
public partial class Blame : Command
|
public partial class Blame : Command
|
||||||
{
|
{
|
||||||
|
|
||||||
[GeneratedRegex(@"^\^?([0-9a-f]+)\s+.*\((.*)\s+(\d+)\s+[\-\+]?\d+\s+\d+\) (.*)")]
|
[GeneratedRegex(@"^\^?([0-9a-f]+)\s+.*\((.*)\s+(\d+)\s+[\-\+]?\d+\s+\d+\) (.*)")]
|
||||||
private static partial Regex REG_FORMAT();
|
private static partial Regex REG_FORMAT();
|
||||||
|
|
||||||
|
|
|
@ -50,25 +50,17 @@ namespace SourceGit.Commands
|
||||||
if (!allowEmpty && string.IsNullOrWhiteSpace(value))
|
if (!allowEmpty && string.IsNullOrWhiteSpace(value))
|
||||||
{
|
{
|
||||||
if (string.IsNullOrEmpty(WorkingDirectory))
|
if (string.IsNullOrEmpty(WorkingDirectory))
|
||||||
{
|
|
||||||
Args = $"config --global --unset {key}";
|
Args = $"config --global --unset {key}";
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
|
||||||
Args = $"config --unset {key}";
|
Args = $"config --unset {key}";
|
||||||
}
|
}
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (string.IsNullOrWhiteSpace(WorkingDirectory))
|
if (string.IsNullOrWhiteSpace(WorkingDirectory))
|
||||||
{
|
|
||||||
Args = $"config --global {key} \"{value}\"";
|
Args = $"config --global {key} \"{value}\"";
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
|
||||||
Args = $"config {key} \"{value}\"";
|
Args = $"config {key} \"{value}\"";
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
return Exec();
|
return Exec();
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,14 +38,10 @@ namespace SourceGit.Commands
|
||||||
ProcessInlineHighlights();
|
ProcessInlineHighlights();
|
||||||
|
|
||||||
if (_result.TextDiff.Lines.Count == 0)
|
if (_result.TextDiff.Lines.Count == 0)
|
||||||
{
|
|
||||||
_result.TextDiff = null;
|
_result.TextDiff = null;
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
|
||||||
_result.TextDiff.MaxLineNumber = Math.Max(_newLine, _oldLine);
|
_result.TextDiff.MaxLineNumber = Math.Max(_newLine, _oldLine);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
return _result;
|
return _result;
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,11 +10,5 @@
|
||||||
Context = repo;
|
Context = repo;
|
||||||
Args = $"diff -a --ignore-cr-at-eol --check {opt}";
|
Args = $"diff -a --ignore-cr-at-eol --check {opt}";
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool Result()
|
|
||||||
{
|
|
||||||
var rs = ReadToEnd();
|
|
||||||
return rs.IsSuccess;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,7 +30,8 @@ namespace SourceGit.Commands
|
||||||
var match = REG_FORMAT2().Match(line);
|
var match = REG_FORMAT2().Match(line);
|
||||||
if (match.Success)
|
if (match.Success)
|
||||||
{
|
{
|
||||||
var change = new Models.Change() {
|
var change = new Models.Change()
|
||||||
|
{
|
||||||
Path = match.Groups[3].Value,
|
Path = match.Groups[3].Value,
|
||||||
DataForAmend = new Models.ChangeDataForAmend()
|
DataForAmend = new Models.ChangeDataForAmend()
|
||||||
{
|
{
|
||||||
|
@ -46,7 +47,8 @@ namespace SourceGit.Commands
|
||||||
match = REG_FORMAT1().Match(line);
|
match = REG_FORMAT1().Match(line);
|
||||||
if (match.Success)
|
if (match.Success)
|
||||||
{
|
{
|
||||||
var change = new Models.Change() {
|
var change = new Models.Change()
|
||||||
|
{
|
||||||
Path = match.Groups[4].Value,
|
Path = match.Groups[4].Value,
|
||||||
DataForAmend = new Models.ChangeDataForAmend()
|
DataForAmend = new Models.ChangeDataForAmend()
|
||||||
{
|
{
|
||||||
|
|
|
@ -23,11 +23,8 @@ namespace SourceGit.ViewModels
|
||||||
{
|
{
|
||||||
Task.Run(() =>
|
Task.Run(() =>
|
||||||
{
|
{
|
||||||
var result = new Commands.IsConflictResolved(repo, change).Result();
|
var result = new Commands.IsConflictResolved(repo, change).ReadToEnd().IsSuccess;
|
||||||
Dispatcher.UIThread.Post(() =>
|
Dispatcher.UIThread.Post(() => IsResolved = result);
|
||||||
{
|
|
||||||
IsResolved = result;
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue