namespace SourceGit.Commands { /// /// 清理指令 /// public class Clean : Command { public Clean(string repo) { Cwd = repo; Args = "clean -qfd"; } } }