mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-24 20:57:19 -08: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";
|
|
}
|
|
}
|
|
}
|