diff options
author | Robert Speicher <robert@gitlab.com> | 2017-03-28 01:35:37 +0000 |
---|---|---|
committer | Robert Speicher <robert@gitlab.com> | 2017-03-28 01:35:37 +0000 |
commit | 6acaaa5824ddac516dc0d137701260f553b4619f (patch) | |
tree | b56056c277551fd80d13aa34fc5768163ed06df6 /lib/gitlab_projects.rb | |
parent | 199e2d62ebea9939e48d442c6a866d26d0aede4f (diff) | |
parent | 579fcfaf074459e7bda5a755ba6173c57713a15d (diff) | |
download | gitlab-shell-6acaaa5824ddac516dc0d137701260f553b4619f.tar.gz |
Merge branch 'add-quiet-option-to-fetch-command' into 'master'
Fetch repositories with --quiet option by default
See merge request !125
Diffstat (limited to 'lib/gitlab_projects.rb')
-rw-r--r-- | lib/gitlab_projects.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/gitlab_projects.rb b/lib/gitlab_projects.rb index 505b49e..eec8a2b 100644 --- a/lib/gitlab_projects.rb +++ b/lib/gitlab_projects.rb @@ -207,6 +207,7 @@ class GitlabProjects cmd = %W(git --git-dir=#{full_path} fetch #{@name}) cmd << '--prune' cmd << '--force' if forced + cmd << '--quiet' cmd << tags_option pid = Process.spawn(*cmd) |