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

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

module Gitlab
  module Git
    module Version
      def self.git_version
        Gitlab::VersionInfo.parse(Gitaly::Server.all.first.git_binary_version)
      end
    end
  end
end