mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-21 20:24:59 +00:00
69 lines
2.1 KiB
C#
69 lines
2.1 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SourceGit.ViewModels
|
|
{
|
|
public class Squash : Popup
|
|
{
|
|
public Models.Commit Target
|
|
{
|
|
get;
|
|
}
|
|
|
|
[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;
|
|
_message = new Commands.QueryCommitFullMessage(_repo.FullPath, shaToGetPreferMessage).Result();
|
|
Target = target;
|
|
}
|
|
|
|
public override Task<bool> Sure()
|
|
{
|
|
_repo.SetWatcherEnabled(false);
|
|
ProgressDescription = "Squashing ...";
|
|
|
|
var log = _repo.CreateLog("Squash");
|
|
Use(log);
|
|
|
|
return Task.Run(() =>
|
|
{
|
|
var autoStashed = false;
|
|
var succ = false;
|
|
|
|
if (_repo.LocalChangesCount > 0)
|
|
{
|
|
succ = new Commands.Stash(_repo.FullPath).Use(log).Push("SQUASH_AUTO_STASH");
|
|
if (!succ)
|
|
{
|
|
log.Complete();
|
|
CallUIThread(() => _repo.SetWatcherEnabled(true));
|
|
return false;
|
|
}
|
|
|
|
autoStashed = true;
|
|
}
|
|
|
|
succ = new Commands.Reset(_repo.FullPath, Target.SHA, "--soft").Use(log).Exec();
|
|
if (succ)
|
|
succ = new Commands.Commit(_repo.FullPath, _message, true, _repo.Settings.EnableSignOffForCommit).Use(log).Run();
|
|
|
|
if (succ && autoStashed)
|
|
new Commands.Stash(_repo.FullPath).Use(log).Pop("stash@{0}");
|
|
|
|
log.Complete();
|
|
CallUIThread(() => _repo.SetWatcherEnabled(true));
|
|
return succ;
|
|
});
|
|
}
|
|
|
|
private readonly Repository _repo;
|
|
private string _message;
|
|
}
|
|
}
|