I installed GitLab Enterprise Edition 12.5.4-ee in my VPS (centos 7) and create some project, the URL of one of them for clone is :
[email protected]:root/ir-module-software.git
Where can i find project repository?
I used following command :
find / -name ir-module-software.git
but no thing was find.
I saw /var/opt/gitlab/git-data/repositories
directory but no proper thing was found (It is no empty).
Thank you
2
Answers
By default repositories are hashed and stored on
/var/opt/gitlab/git-data/repositories/@hashed
, for disablehash
, go toadmin_area->setting->repository->Repository storage
and remove tick ofUse hashed storage
/var/opt/gitlab/git-data/repositories
is the correct location of your repository. Gitlab (and git) stores your repository on the server in the form of a “bare” repository.Think of it as the contents of your
.git
folder when you clone it locally.