gitlab-org--gitlab-foss/lib/gitlab/git/branch.rb

20 lines
417 B
Ruby
Raw Normal View History

# Gitaly note: JV: no RPC's here.
2017-01-04 13:43:06 -05:00
module Gitlab
module Git
class Branch < Ref
2017-10-27 11:55:08 -04:00
def self.find(repo, branch_name)
if branch_name.is_a?(Gitlab::Git::Branch)
branch_name
else
repo.find_branch(branch_name)
end
end
2017-07-14 09:30:58 -04:00
def initialize(repository, name, target, target_commit)
super(repository, name, target, target_commit)
end
2017-01-04 13:43:06 -05:00
end
end
end