forked from qt-creator/qt-creator
Git: Fix pull
regression from 40eecd87c9
Change-Id: Ibbf4082f9949ca25d22d7ba707281ae6652249ce
Reviewed-by: Petar Perisin <petar.perisin@gmail.com>
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
committed by
Tobias Hunger
parent
64018aed8a
commit
53443616e5
@@ -2128,7 +2128,7 @@ bool GitClient::executeAndHandleConflicts(const QString &workingDirectory, const
|
|||||||
bool GitClient::synchronousPull(const QString &workingDirectory, bool rebase)
|
bool GitClient::synchronousPull(const QString &workingDirectory, bool rebase)
|
||||||
{
|
{
|
||||||
QString abortCommand;
|
QString abortCommand;
|
||||||
QStringList arguments;
|
QStringList arguments(QLatin1String("pull"));
|
||||||
if (rebase) {
|
if (rebase) {
|
||||||
arguments << QLatin1String("--rebase");
|
arguments << QLatin1String("--rebase");
|
||||||
abortCommand = QLatin1String("rebase");
|
abortCommand = QLatin1String("rebase");
|
||||||
|
|||||||
Reference in New Issue
Block a user