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

repository_mirroring.rb « git « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7e63a6dc7cbeaef4bb1c0482d123b835f54d52cc (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Gitlab
  module Git
    module RepositoryMirroring
      def remote_branches(remote_name)
        gitaly_ref_client.remote_branches(remote_name)
      end
    end
  end
end