mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-06-21 02:15:00 +00:00
13 lines
288 B
C#
13 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}";
|
|
}
|
|
}
|
|
}
|