forked from qt-creator/qt-creator
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:
@@ -146,7 +146,7 @@ Core::ShellCommand *GitVersionControl::createInitialCheckoutCommand(const QStrin
|
|||||||
const QStringList &extraArgs)
|
const QStringList &extraArgs)
|
||||||
{
|
{
|
||||||
QStringList args;
|
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());
|
auto command = new VcsBase::VcsCommand(baseDirectory.toString(), m_client->processEnvironment());
|
||||||
command->addJob(m_client->vcsBinary(), args, -1);
|
command->addJob(m_client->vcsBinary(), args, -1);
|
||||||
|
|||||||
Reference in New Issue
Block a user