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 | |
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
-rw-r--r-- | CHANGELOG | 3 | ||||
-rw-r--r-- | lib/gitlab_projects.rb | 1 |
2 files changed, 4 insertions, 0 deletions
@@ -1,3 +1,6 @@ +v5.0.1 + - Fetch repositories with `--quiet` option by default + v5.0.0 - Remove support for git-annex 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) |