gitlab-org--gitlab-foss/lib/gitlab/git/branch.rb
2018-02-01 13:00:38 +01:00

17 lines
382 B
Ruby

module Gitlab
module Git
class Branch < Ref
def self.find(repo, branch_name)
if branch_name.is_a?(Gitlab::Git::Branch)
branch_name
else
repo.find_branch(branch_name)
end
end
def initialize(repository, name, target, target_commit)
super(repository, name, target, target_commit)
end
end
end
end