Welcome to mirror list, hosted at ThFree Co, Russian Federation.

branch.rb « git « gitlab « lib « ruby - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9618b5fefc8488abd93c2bfca14852fd7083ea2c (plain)
1
2
3
4
5
6
7
8
9
10
11
require_relative 'ref'

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