* Use --quiet for git pull and git clone so git fetch messages do not show up in CI

error logs.
This commit is contained in:
Pranav K 2015-09-22 11:17:59 -07:00
parent d576f71090
commit faf91c06e0
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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