# File lib/git/lib.rb, line 267 def remote_add(name, url, opts = {}) arr_opts = ['add'] arr_opts << '-f' if opts[:with_fetch] arr_opts << name arr_opts << url command('remote', arr_opts) end