namespace SourceGit.Commands { /// /// 将Commit另存为Patch文件 /// public class FormatPatch : Command { public FormatPatch(string repo, string commit, string path) { Cwd = repo; Args = $"format-patch {commit} -1 -o \"{path}\""; } } }