使用 gitlab-ce-12.x,Geo 需要对存储路径进行哈希处理 ( https://docs.gitlab.com/ee/administration/repository_storage_types.html )
因此,对于给定的存储库,数据将存储在:“@hashed/#{hash[0..1]}/#{hash[2..3]}/#{hash}.git”
从实际的角度来看,假设我有一个存储库,其 URL 是
如何计算出服务器上存储的路径?即我如何找到
#{hash[0..1]}/#{hash[2..3]}/#{hash}
谢谢