2018-06-08 05:16:21 -04:00
|
|
|
module Gitlab
|
|
|
|
module Git
|
|
|
|
module Version
|
|
|
|
extend Gitlab::Git::Popen
|
|
|
|
|
|
|
|
def self.git_version
|
2018-06-19 09:09:47 -04:00
|
|
|
Gitlab::VersionInfo.parse(Gitaly::Server.all.first.git_binary_version)
|
2018-06-08 05:16:21 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|