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

branch.rb « git « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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