Commit 6acaaa58 authored by Robert Speicher's avatar Robert Speicher

Merge branch 'add-quiet-option-to-fetch-command' into 'master'

Fetch repositories with --quiet option by default

See merge request !125
parents 199e2d62 579fcfaf
v5.0.1
- Fetch repositories with `--quiet` option by default
v5.0.0 v5.0.0
- Remove support for git-annex - Remove support for git-annex
......
...@@ -207,6 +207,7 @@ class GitlabProjects ...@@ -207,6 +207,7 @@ class GitlabProjects
cmd = %W(git --git-dir=#{full_path} fetch #{@name}) cmd = %W(git --git-dir=#{full_path} fetch #{@name})
cmd << '--prune' cmd << '--prune'
cmd << '--force' if forced cmd << '--force' if forced
cmd << '--quiet'
cmd << tags_option cmd << tags_option
pid = Process.spawn(*cmd) pid = Process.spawn(*cmd)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment