2017-07-12 10:31:36 -04:00
|
|
|
# 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)
|
2017-03-17 15:36:46 -04:00
|
|
|
end
|
2017-01-04 13:43:06 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|