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