summaryrefslogtreecommitdiff
path: root/lib/gitlab/git/version.rb
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