Git: Change pull to run asynchronously

Fixes: QTCREATORBUG-13279
Change-Id: Idee6e64e5eebe729e7c1d0e0135a1d8b464187b7
Reviewed-by: André Hartmann <aha_1980@gmx.de>
This commit is contained in:
Orgad Shaneh
2018-09-18 07:43:22 +03:00
committed by Orgad Shaneh
parent 641c9f7db9
commit 296ae92853
3 changed files with 16 additions and 15 deletions

View File

@@ -1111,7 +1111,7 @@ void GitPlugin::pull()
if (!m_gitClient->beginStashScope(topLevel, "Pull", rebase ? Default : AllowUnstashed))
return;
m_gitClient->synchronousPull(topLevel, rebase);
m_gitClient->pull(topLevel, rebase);
}
void GitPlugin::push()