mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
12 lines
280 B
C#
12 lines
280 B
C#
namespace SourceGit.Commands {
|
|
/// <summary>
|
|
/// 合并分支
|
|
/// </summary>
|
|
public class Merge : Command {
|
|
|
|
public Merge(string repo, string source, string mode) {
|
|
Cwd = repo;
|
|
Args = $"merge {source} {mode}";
|
|
}
|
|
}
|
|
}
|