class Git::Lib

def remote_add(name, url, opts = {})

def remote_add(name, url, opts = {})
  arr_opts = ['add']
  arr_opts << '-f' if opts[:with_fetch]
  arr_opts << '--'
  arr_opts << name
  arr_opts << url
  
  command('remote', arr_opts)
end