mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-25 03:12:21 +08:00
13 lines
231 B
C#
13 lines
231 B
C#
namespace SourceGit.Commands
|
|
{
|
|
public class GC : Command
|
|
{
|
|
public GC(string repo)
|
|
{
|
|
WorkingDirectory = repo;
|
|
Context = repo;
|
|
Args = "gc --prune=now";
|
|
}
|
|
}
|
|
}
|