mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-29 08:04:59 +00:00
14 lines
No EOL
343 B
C#
14 lines
No EOL
343 B
C#
namespace SourceGit.Commands
|
|
{
|
|
public class Rebase : Command
|
|
{
|
|
public Rebase(string repo, string basedOn, bool autoStash)
|
|
{
|
|
WorkingDirectory = repo;
|
|
Context = repo;
|
|
Args = "rebase ";
|
|
if (autoStash) Args += "--autostash ";
|
|
Args += basedOn;
|
|
}
|
|
}
|
|
} |