diff options
author | Tobias Hunger <tobias.hunger@theqtcompany.com> | 2015-05-18 13:03:33 +0200 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@theqtcompany.com> | 2015-05-18 12:11:04 +0000 |
commit | ef56bc6be0b3d8853dab777b85ecd06f71cccbb9 (patch) | |
tree | 63565b8186148109afde8207c2c9ef5d1db182dd /src/plugins/git/gitversioncontrol.cpp | |
parent | de2f5f63399a53ae79fa42c6e67259b1df05a0ee (diff) | |
download | qt-creator-ef56bc6be0b3d8853dab777b85ecd06f71cccbb9.tar.gz |
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>
Diffstat (limited to 'src/plugins/git/gitversioncontrol.cpp')
-rw-r--r-- | src/plugins/git/gitversioncontrol.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/git/gitversioncontrol.cpp b/src/plugins/git/gitversioncontrol.cpp index bb5f7024e9..412f62d273 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); |