sourcegit/src/Commands/Rebase.cs

12 lines
332 B
C#
Raw Normal View History

namespace SourceGit.Commands {
2021-04-29 05:05:55 -07:00
public class Rebase : Command {
public Rebase(string repo, string basedOn, bool autoStash) {
WorkingDirectory = repo;
Context = repo;
2021-04-29 05:05:55 -07:00
Args = "rebase ";
if (autoStash) Args += "--autostash ";
Args += basedOn;
}
}
}