summaryrefslogtreecommitdiff
path: root/lib/gitlab/git/remote_mirror.rb
blob: e992d522e7ff73dc47b88c8d4f8c89921911578a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

module Gitlab
  module Git
    class RemoteMirror
      include Gitlab::Git::WrapsGitalyErrors

      def initialize(repository, ref_name)
        @repository = repository
        @ref_name = ref_name
      end

      def update(only_branches_matching: [])
        wrapped_gitaly_errors do
          @repository.gitaly_remote_client.update_remote_mirror(@ref_name, only_branches_matching)
        end
      end
    end
  end
end