mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-26 03:40:45 +08:00
29 lines
716 B
C#
29 lines
716 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace SourceGit.ViewModels
|
|
{
|
|
public class LFSPrune : Popup
|
|
{
|
|
public LFSPrune(Repository repo)
|
|
{
|
|
_repo = repo;
|
|
View = new Views.LFSPrune() { DataContext = this };
|
|
}
|
|
|
|
public override Task<bool> Sure()
|
|
{
|
|
_repo.SetWatcherEnabled(false);
|
|
ProgressDescription = "LFS prune ...";
|
|
|
|
return Task.Run(() =>
|
|
{
|
|
new Commands.LFS(_repo.FullPath).Prune(SetProgressDescription);
|
|
CallUIThread(() => _repo.SetWatcherEnabled(true));
|
|
return true;
|
|
});
|
|
}
|
|
|
|
private readonly Repository _repo = null;
|
|
}
|
|
}
|