mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-23 21:24:59 +00: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}";
|
|
}
|
|
}
|
|
}
|