mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-25 19:32:03 +08:00
14 lines
288 B
C#
14 lines
288 B
C#
namespace SourceGit.Commands
|
|
{
|
|
public class Bisect : Command
|
|
{
|
|
public Bisect(string repo, string subcmd)
|
|
{
|
|
WorkingDirectory = repo;
|
|
Context = repo;
|
|
RaiseError = false;
|
|
Args = $"bisect {subcmd}";
|
|
}
|
|
}
|
|
}
|