I have just installed GitLab.
I created a project called project-x.
I have created few users and assigned it to the project.
Now I tried to clone:
My problem was that I had a DNS entry for gitlab.example.com to point to my load balancer. So when I tried command ssh git@gitlab.example.com I was really connecting to the wrong machine.
I made an entry in my ~/.ssh/config file:
Host gitlab.example.com
Hostname 192.168.1.50
That wasted a lot of time...