sourcegit/src/Commands/Clean.cs

29 lines
692 B
C#
Raw Normal View History

using System.Collections.Generic;
using System.Text;
2021-04-29 05:05:55 -07:00
namespace SourceGit.Commands {
/// <summary>
/// 清理指令
/// </summary>
public class Clean : Command {
public Clean(string repo) {
Cwd = repo;
Args = "clean -qfd";
}
public Clean(string repo, List<string> files) {
StringBuilder builder = new StringBuilder();
builder.Append("clean -qfd --");
foreach (var f in files) {
builder.Append(" \"");
builder.Append(f);
builder.Append("\"");
}
Cwd = repo;
Args = builder.ToString();
}
2021-04-29 05:05:55 -07:00
}
}