forked from sourcegit-scm/sourcegit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRevert.cs
More file actions
44 lines (36 loc) · 1005 Bytes
/
Copy pathRevert.cs
File metadata and controls
44 lines (36 loc) · 1005 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
using System.Threading.Tasks;
namespace SourceGit.ViewModels
{
public class Revert : Popup
{
public Models.Commit Target
{
get;
}
public bool AutoCommit
{
get;
set;
}
public Revert(Repository repo, Models.Commit target)
{
_repo = repo;
Target = target;
AutoCommit = true;
}
public override async Task<bool> Sure()
{
using var lockWatcher = _repo.LockWatcher();
_repo.ClearCommitMessage();
ProgressDescription = $"Revert commit '{Target.SHA}' ...";
var log = _repo.CreateLog($"Revert '{Target.SHA}'");
Use(log);
await new Commands.Revert(_repo.FullPath, Target.SHA, AutoCommit)
.Use(log)
.ExecAsync();
log.Complete();
return true;
}
private readonly Repository _repo = null;
}
}