gitlab-org--gitlab-foss/lib/gitlab/git/version.rb

12 lines
231 B
Ruby
Raw Normal View History

module Gitlab
module Git
module Version
extend Gitlab::Git::Popen
def self.git_version
Gitlab::VersionInfo.parse(popen(%W(#{Gitlab.config.git.bin_path} --version), nil).first)
end
end
end
end