summaryrefslogtreecommitdiff
path: root/lib/gitlab/git/branch.rb
blob: c53882787f1901141fe9ba93fe394b0b555aae52 (plain)
1
2
3
4
5
6
7
8
9
10
11
# Gitaly note: JV: no RPC's here.

module Gitlab
  module Git
    class Branch < Ref
      def initialize(repository, name, target, target_commit)
        super(repository, name, target, target_commit)
      end
    end
  end
end