From b55e06716b65a73dcde59d68ba08a0e022cf1ead Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Tue, 19 Jul 2016 09:08:29 +0300 Subject: [PATCH] Git: Suppress stderr output (for the output pane) on clone MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It already appears in the wizard. No need to duplicate. Change-Id: I74b1f7d9d5be44e95965bf2af3fee9727372995a Reviewed-by: André Hartmann Reviewed-by: Tobias Hunger --- src/plugins/git/gitversioncontrol.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/git/gitversioncontrol.cpp b/src/plugins/git/gitversioncontrol.cpp index f3b6289417f..95985033422 100644 --- a/src/plugins/git/gitversioncontrol.cpp +++ b/src/plugins/git/gitversioncontrol.cpp @@ -144,6 +144,7 @@ Core::ShellCommand *GitVersionControl::createInitialCheckoutCommand(const QStrin args << QLatin1String("clone") << QLatin1String("--progress") << extraArgs << url << localName; auto command = new VcsBase::VcsCommand(baseDirectory.toString(), m_client->processEnvironment()); + command->addFlags(VcsBase::VcsCommand::SuppressStdErr); command->addJob(m_client->vcsBinary(), args, -1); return command; }