mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-22 04:34:59 +00:00
23 lines
No EOL
594 B
C#
23 lines
No EOL
594 B
C#
using System;
|
|
|
|
namespace SourceGit.Commands
|
|
{
|
|
public class Merge : Command
|
|
{
|
|
public Merge(string repo, string source, string mode, Action<string> outputHandler)
|
|
{
|
|
_outputHandler = outputHandler;
|
|
WorkingDirectory = repo;
|
|
Context = repo;
|
|
TraitErrorAsOutput = true;
|
|
Args = $"merge --progress {source} {mode}";
|
|
}
|
|
|
|
protected override void OnReadline(string line)
|
|
{
|
|
_outputHandler?.Invoke(line);
|
|
}
|
|
|
|
private readonly Action<string> _outputHandler = null;
|
|
}
|
|
} |