From faf91c06e04306b4f4c571b3ea0b370f8f6057f5 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Tue, 22 Sep 2015 11:17:59 -0700 Subject: [PATCH] * Use --quiet for git pull and git clone so git fetch messages do not show up in CI error logs. --- build/_git-clone.shade | 2 +- build/_git-pull.shade | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/_git-clone.shade b/build/_git-clone.shade index 32355ab5a3..13b02334e6 100644 --- a/build/_git-clone.shade +++ b/build/_git-clone.shade @@ -3,7 +3,7 @@ default gitBranch='' -var gitCommand='clone ${gitUri}' +var gitCommand='clone --quiet ${gitUri}' set gitCommand='${gitCommand} --branch ${gitBranch}' if='!string.IsNullOrEmpty(gitBranch)' git diff --git a/build/_git-pull.shade b/build/_git-pull.shade index cb1e565d0c..12a11edaad 100644 --- a/build/_git-pull.shade +++ b/build/_git-pull.shade @@ -2,7 +2,7 @@ default gitBranch='' -var gitCommand='pull --ff-only ${gitUri}' +var gitCommand='pull --quiet --ff-only ${gitUri}' set gitCommand='${gitCommand} ${gitBranch}:${gitBranch}' if='!string.IsNullOrEmpty(gitBranch)' git