mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-21 04:04:59 +00:00
13 lines
248 B
C#
13 lines
248 B
C#
namespace SourceGit.Commands {
|
|
|
|
/// <summary>
|
|
/// 初始化Git仓库
|
|
/// </summary>
|
|
public class Init : Command {
|
|
|
|
public Init(string workDir) {
|
|
Cwd = workDir;
|
|
Args = "init -q";
|
|
}
|
|
}
|
|
}
|