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: 1e14e8b652a1ac0b86352586123eed1e0f7dbf49 (plain)
1
2
3
4
5
6
7
8
9
10
11
module Gitlab
  module Git
    module Version
      extend Gitlab::Git::Popen

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