mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-25 21:07:20 -08:00
14 lines
372 B
C#
14 lines
372 B
C#
namespace SourceGit.Commands
|
|
{
|
|
public class IsConflictResolved : Command
|
|
{
|
|
public IsConflictResolved(string repo, Models.Change change)
|
|
{
|
|
var opt = new Models.DiffOption(change, true);
|
|
|
|
WorkingDirectory = repo;
|
|
Context = repo;
|
|
Args = $"diff -a --ignore-cr-at-eol --check {opt}";
|
|
}
|
|
}
|
|
}
|