2015-04-26 12:48:37 +05:30
|
|
|
module Gitlab
|
|
|
|
module Git
|
|
|
|
BLANK_SHA = '0' * 40
|
|
|
|
TAG_REF_PREFIX = "refs/tags/"
|
|
|
|
BRANCH_REF_PREFIX = "refs/heads/"
|
|
|
|
|
|
|
|
class << self
|
|
|
|
def ref_name(ref)
|
|
|
|
ref.gsub(/\Arefs\/(tags|heads)\//, '')
|
|
|
|
end
|
|
|
|
|
|
|
|
def tag_ref?(ref)
|
|
|
|
ref.start_with?(TAG_REF_PREFIX)
|
|
|
|
end
|
|
|
|
|
|
|
|
def branch_ref?(ref)
|
|
|
|
ref.start_with?(BRANCH_REF_PREFIX)
|
|
|
|
end
|
|
|
|
|
|
|
|
def blank_ref?(ref)
|
|
|
|
ref == BLANK_SHA
|
|
|
|
end
|
2016-01-14 18:37:52 +05:30
|
|
|
|
|
|
|
def version
|
|
|
|
Gitlab::VersionInfo.parse(Gitlab::Popen.popen(%W(#{Gitlab.config.git.bin_path} --version)).first)
|
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|