mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-26 03:40:45 +08:00
68 lines
2.0 KiB
C#
68 lines
2.0 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SourceGit.ViewModels
|
|
{
|
|
public class Squash : Popup
|
|
{
|
|
public Models.Commit Target
|
|
{
|
|
get => _target;
|
|
}
|
|
|
|
[Required(ErrorMessage = "Commit message is required!!!")]
|
|
public string Message
|
|
{
|
|
get => _message;
|
|
set => SetProperty(ref _message, value, true);
|
|
}
|
|
|
|
public Squash(Repository repo, Models.Commit target, string shaToGetPreferMessage)
|
|
{
|
|
_repo = repo;
|
|
_target = target;
|
|
_message = new Commands.QueryCommitFullMessage(_repo.FullPath, shaToGetPreferMessage).Result();
|
|
|
|
View = new Views.Squash() { DataContext = this };
|
|
}
|
|
|
|
public override Task<bool> Sure()
|
|
{
|
|
_repo.SetWatcherEnabled(false);
|
|
ProgressDescription = "Squashing ...";
|
|
|
|
return Task.Run(() =>
|
|
{
|
|
var autoStashed = false;
|
|
var succ = false;
|
|
|
|
if (_repo.LocalChangesCount > 0)
|
|
{
|
|
succ = new Commands.Stash(_repo.FullPath).Push("SQUASH_AUTO_STASH");
|
|
if (!succ)
|
|
{
|
|
CallUIThread(() => _repo.SetWatcherEnabled(true));
|
|
return false;
|
|
}
|
|
|
|
autoStashed = true;
|
|
}
|
|
|
|
succ = new Commands.Reset(_repo.FullPath, Target.SHA, "--soft").Exec();
|
|
if (succ)
|
|
succ = new Commands.Commit(_repo.FullPath, _message, true, _repo.Settings.EnableSignOffForCommit).Run();
|
|
|
|
if (succ && autoStashed)
|
|
new Commands.Stash(_repo.FullPath).Pop("stash@{0}");
|
|
|
|
CallUIThread(() => _repo.SetWatcherEnabled(true));
|
|
return succ;
|
|
});
|
|
}
|
|
|
|
private readonly Repository _repo;
|
|
private Models.Commit _target;
|
|
private string _message;
|
|
}
|
|
}
|