debian-mirror-gitlab/lib/gitlab/git/repository_mirroring.rb

12 lines
211 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
module Gitlab
module Git
module RepositoryMirroring
2018-11-18 11:00:15 +05:30
def remote_branches(remote_name)
2018-11-20 20:47:30 +05:30
gitaly_ref_client.remote_branches(remote_name)
2018-03-17 18:26:18 +05:30
end
end
end
end