feature<Merge>: show progress for merge

This commit is contained in:
leo 2021-05-26 18:58:34 +08:00
parent 67f5eed9a0
commit 763779b529
2 changed files with 12 additions and 3 deletions

View file

@ -1,12 +1,21 @@
using System;
namespace SourceGit.Commands {
/// <summary>
/// 合并分支
/// </summary>
public class Merge : Command {
private Action<string> handler = null;
public Merge(string repo, string source, string mode) {
public Merge(string repo, string source, string mode, Action<string> onProgress) {
Cwd = repo;
Args = $"merge {source} {mode}";
Args = $"merge --progress {source} {mode}";
TraitErrorAsOutput = true;
handler = onProgress;
}
public override void OnReadline(string line) {
handler?.Invoke(line);
}
}
}