We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 018d919 commit 19dfe5eCopy full SHA for 19dfe5e
lib/git/lib.rb
@@ -879,6 +879,8 @@ def fetch(remote, opts)
879
arr_opts = []
880
arr_opts << '--tags' if opts[:t] || opts[:tags]
881
arr_opts << '--prune' if opts[:p] || opts[:prune]
882
+ arr_opts << '--prune-tags' if opts[:P] || opts[:'prune-tags']
883
+ arr_opts << '--force' if opts[:f] || opts[:force]
884
arr_opts << '--unshallow' if opts[:unshallow]
885
arr_opts << '--depth' << opts[:depth] if opts[:depth]
886
arr_opts << '--'
0 commit comments