mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-24 20:57:19 -08:00
fix<Pull>: fix stash and re-apply is not working on pull command
This commit is contained in:
parent
f92f5746b9
commit
9006752705
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ namespace SourceGit.Views.Popups {
|
||||||
|
|
||||||
return Task.Run(() => {
|
return Task.Run(() => {
|
||||||
Models.Watcher.SetEnabled(repo.Path, false);
|
Models.Watcher.SetEnabled(repo.Path, false);
|
||||||
var succ = new Commands.Pull(repo.Path, branch.Remote, branch.Name, rebase, autoStash, UpdateProgress).Exec();
|
var succ = new Commands.Pull(repo.Path, branch.Remote, branch.Name, rebase, autoStash, UpdateProgress).Run();
|
||||||
Models.Watcher.SetEnabled(repo.Path, true);
|
Models.Watcher.SetEnabled(repo.Path, true);
|
||||||
return succ;
|
return succ;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue