From ef56bc6be0b3d8853dab777b85ecd06f71cccbb9 Mon Sep 17 00:00:00 2001 From: Tobias Hunger Date: Mon, 18 May 2015 13:03:33 +0200 Subject: [PATCH] Git: Make initial checkout more verbose I tried this before and it did not work... Change-Id: Ia503e1d9c72c6bec7e8fdb68c683a6666f32f851 Reviewed-by: Orgad Shaneh --- src/plugins/git/gitversioncontrol.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/git/gitversioncontrol.cpp b/src/plugins/git/gitversioncontrol.cpp index bb5f7024e9c..412f62d2739 100644 --- a/src/plugins/git/gitversioncontrol.cpp +++ b/src/plugins/git/gitversioncontrol.cpp @@ -146,7 +146,7 @@ Core::ShellCommand *GitVersionControl::createInitialCheckoutCommand(const QStrin const QStringList &extraArgs) { QStringList args; - args << QLatin1String("clone") << extraArgs << url << localName; + args << QLatin1String("clone") << QLatin1String("--progress") << extraArgs << url << localName; auto command = new VcsBase::VcsCommand(baseDirectory.toString(), m_client->processEnvironment()); command->addJob(m_client->vcsBinary(), args, -1);