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