Git: Suppress for-each-ref

Another plumbing command

Change-Id: I1450baae370e46e8daf5c440def7e9f04d9d01bb
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
Orgad Shaneh
2014-02-12 09:58:02 +02:00
committed by Orgad Shaneh
parent 65670b1f24
commit 0bb318939b

View File

@@ -2291,7 +2291,8 @@ bool GitClient::synchronousForEachRefCmd(const QString &workingDirectory, QStrin
args.push_front(QLatin1String("for-each-ref")); args.push_front(QLatin1String("for-each-ref"));
QByteArray outputText; QByteArray outputText;
QByteArray errorText; QByteArray errorText;
const bool rc = fullySynchronousGit(workingDirectory, args, &outputText, &errorText); const bool rc = fullySynchronousGit(workingDirectory, args, &outputText, &errorText,
VcsBasePlugin::SuppressCommandLogging);
*output = commandOutputFromLocal8Bit(outputText); *output = commandOutputFromLocal8Bit(outputText);
if (!rc) if (!rc)
msgCannotRun(args, workingDirectory, errorText, errorMessage); msgCannotRun(args, workingDirectory, errorText, errorMessage);