diff --git a/src/plugins/git/gitplugin.cpp b/src/plugins/git/gitplugin.cpp index 3124f0d2304..a609bf45d44 100644 --- a/src/plugins/git/gitplugin.cpp +++ b/src/plugins/git/gitplugin.cpp @@ -949,7 +949,7 @@ void GitPlugin::pull() GitClient::StashGuard stashGuard(state.topLevel(), QLatin1String("Pull")); if (stashGuard.stashingFailed(false) || (rebase && (stashGuard.result() == GitClient::NotStashed))) return; - if (!m_gitClient->synchronousPull(state.topLevel(), false)) + if (!m_gitClient->synchronousPull(state.topLevel(), rebase)) stashGuard.preventPop(); }