mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-06-24 03:45:00 +00:00
12 lines
231 B
C#
12 lines
231 B
C#
namespace SourceGit.Commands
|
|
{
|
|
public class GC : Command
|
|
{
|
|
public GC(string repo)
|
|
{
|
|
WorkingDirectory = repo;
|
|
Context = repo;
|
|
Args = "gc --prune=now";
|
|
}
|
|
}
|
|
}
|