summaryrefslogtreecommitdiff
path: root/lib/gitlab/git/branch.rb
blob: 3487e099381bba414546f682645d81635ef42024 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Gitaly note: JV: no RPC's here.

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