mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
88 lines
2.7 KiB
C#
88 lines
2.7 KiB
C#
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace SourceGit.ViewModels
|
|||
|
{
|
|||
|
public class CheckoutCommit: Popup
|
|||
|
{
|
|||
|
public string Commit
|
|||
|
{
|
|||
|
get;
|
|||
|
private set;
|
|||
|
}
|
|||
|
|
|||
|
public bool HasLocalChanges
|
|||
|
{
|
|||
|
get => _repo.WorkingCopyChangesCount > 0;
|
|||
|
}
|
|||
|
|
|||
|
public bool AutoStash
|
|||
|
{
|
|||
|
get => _autoStash;
|
|||
|
set => SetProperty(ref _autoStash, value);
|
|||
|
}
|
|||
|
|
|||
|
public CheckoutCommit(Repository repo, string commit)
|
|||
|
{
|
|||
|
_repo = repo;
|
|||
|
Commit = commit;
|
|||
|
View = new Views.CheckoutCommit() { DataContext = this };
|
|||
|
}
|
|||
|
|
|||
|
public override Task<bool> Sure()
|
|||
|
{
|
|||
|
_repo.SetWatcherEnabled(false);
|
|||
|
ProgressDescription = $"Checkout Commit '{Commit}' ...";
|
|||
|
|
|||
|
return Task.Run(() =>
|
|||
|
{
|
|||
|
var needPopStash = false;
|
|||
|
if (HasLocalChanges)
|
|||
|
{
|
|||
|
if (AutoStash)
|
|||
|
{
|
|||
|
SetProgressDescription("Adding untracked changes ...");
|
|||
|
var succ = new Commands.Add(_repo.FullPath).Exec();
|
|||
|
if (succ)
|
|||
|
{
|
|||
|
SetProgressDescription("Stash local changes ...");
|
|||
|
succ = new Commands.Stash(_repo.FullPath).Push("CHECKOUT_AUTO_STASH");
|
|||
|
}
|
|||
|
|
|||
|
if (!succ)
|
|||
|
{
|
|||
|
CallUIThread(() => _repo.SetWatcherEnabled(true));
|
|||
|
return false;
|
|||
|
}
|
|||
|
|
|||
|
needPopStash = true;
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
SetProgressDescription("Discard local changes ...");
|
|||
|
Commands.Discard.All(_repo.FullPath);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
SetProgressDescription("Checkout commit ...");
|
|||
|
var rs = new Commands.Checkout(_repo.FullPath).Commit(Commit, SetProgressDescription);
|
|||
|
|
|||
|
if (needPopStash)
|
|||
|
{
|
|||
|
SetProgressDescription("Re-apply local changes...");
|
|||
|
rs = new Commands.Stash(_repo.FullPath).Apply("stash@{0}");
|
|||
|
if (rs)
|
|||
|
{
|
|||
|
rs = new Commands.Stash(_repo.FullPath).Drop("stash@{0}");
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
CallUIThread(() => _repo.SetWatcherEnabled(true));
|
|||
|
return rs;
|
|||
|
});
|
|||
|
}
|
|||
|
|
|||
|
private readonly Repository _repo = null;
|
|||
|
private bool _autoStash = true;
|
|||
|
}
|
|||
|
}
|