mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-24 21:54:59 +00:00
11 lines
332 B
C#
11 lines
332 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;
|
|
}
|
|
}
|
|
}
|