sourcegit/src/Commands/GC.cs
leo 8b39df32cc
feature: git command logs
Signed-off-by: leo <longshuang@msn.cn>
2025-04-17 13:23:56 +08:00

12 lines
231 B
C#

namespace SourceGit.Commands
{
public class GC : Command
{
public GC(string repo)
{
WorkingDirectory = repo;
Context = repo;
Args = "gc --prune=now";
}
}
}