BigW Consortium Gitlab

branch.rb 230 Bytes
Newer Older
1 2
# Gitaly note: JV: no RPC's here.

Robert Speicher committed
3 4 5
module Gitlab
  module Git
    class Branch < Ref
6 7
      def initialize(repository, name, target, target_commit)
        super(repository, name, target, target_commit)
8
      end
Robert Speicher committed
9 10 11
    end
  end
end