forked from sourcegit-scm/sourcegit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCleanup.cs
More file actions
30 lines (24 loc) · 686 Bytes
/
Copy pathCleanup.cs
File metadata and controls
30 lines (24 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System.Threading.Tasks;
namespace SourceGit.ViewModels
{
public class Cleanup : Popup
{
public Cleanup(Repository repo)
{
_repo = repo;
}
public override async Task<bool> Sure()
{
using var lockWatcher = _repo.LockWatcher();
ProgressDescription = "Cleanup (GC & prune) ...";
var log = _repo.CreateLog("Cleanup (GC & prune)");
Use(log);
await new Commands.GC(_repo.FullPath)
.Use(log)
.ExecAsync();
log.Complete();
return true;
}
private readonly Repository _repo = null;
}
}