Git: Make initial checkout more verbose

I tried this before and it did not work...

Change-Id: Ia503e1d9c72c6bec7e8fdb68c683a6666f32f851
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Tobias Hunger
2015-05-18 13:03:33 +02:00
parent de2f5f6339
commit ef56bc6be0

View File

@@ -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);