1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
module Git
class Remote < Path
attr_accessor :name, :url, :fetch_opts
def initialize(base, name)
@base = base
config = @base.lib.config_remote(name)
@name = name
@url = config['url']
@fetch_opts = config['fetch']
end
def fetch(opts={})
@base.fetch(@name, opts)
end
# merge this remote locally
def merge(branch = 'master')
@base.merge("#{@name}/#{branch}")
end
def branch(branch = 'master')
Git::Branch.new(@base, "#{@name}/#{branch}")
end
def remove
@base.lib.remote_remove(@name)
end
def to_s
@name
end
end
end
|