2024-02-05 23:08:37 -08:00
|
|
|
|
namespace SourceGit.Commands {
|
2021-04-29 05:05:55 -07:00
|
|
|
|
public class Init : Command {
|
2024-02-05 23:08:37 -08:00
|
|
|
|
public Init(string ctx, string dir) {
|
|
|
|
|
Context = ctx;
|
|
|
|
|
WorkingDirectory = dir;
|
2021-04-29 05:05:55 -07:00
|
|
|
|
Args = "init -q";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|