mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
13 lines
240 B
C#
13 lines
240 B
C#
|
namespace SourceGit.Commands {
|
||
|
/// <summary>
|
||
|
/// 清理指令
|
||
|
/// </summary>
|
||
|
public class Clean : Command {
|
||
|
|
||
|
public Clean(string repo) {
|
||
|
Cwd = repo;
|
||
|
Args = "clean -qfd";
|
||
|
}
|
||
|
}
|
||
|
}
|