diff --git a/src/plugins/git/clonewizardpage.cpp b/src/plugins/git/clonewizardpage.cpp
index 926a5d01d3b030b9692fc7ae80a89b5b67bf411a..25a048f29194e3bb30f6c4d3175b6e62c431b13c 100644
--- a/src/plugins/git/clonewizardpage.cpp
+++ b/src/plugins/git/clonewizardpage.cpp
@@ -124,7 +124,7 @@ VcsBase::Command *CloneWizardPage::createCheckoutJob(QString *checkoutPath) cons
      QStringList args(QLatin1String("clone"));
      if (!checkoutBranch.isEmpty())
          args << QLatin1String("--branch") << checkoutBranch;
-     args << repository() << checkoutDir;
+     args << QLatin1String("--progress") << repository() << checkoutDir;
      VcsBase::Command *command = new VcsBase::Command(client->gitBinaryPath(), workingDirectory,
                                                       client->processEnvironment());
      command->addFlags(VcsBase::VcsBasePlugin::MergeOutputChannels);