If you followed the instructions for installing gitlab, then you should have installed it on the linux box under a user named git . Usually in such a folder
/home/git/gitlab
Therefore, you must use git@gitlabhost.com
I'm not sure what you mean by “SSH configuration”. But since each user is expected to use their own key pair, there should be no problem accessing the gitlab managed repository using regular git commands. Both of the following should work
git clone ssh:// git@gitlabhost.com /group/repo.git git clone git@gitlabhost.com :group/repo.git
Each user must establish their own git identity (on their local machines) using
git config --global user.name "elitmus" git config --global user.email " abc@gmail.com "
so that git can uniquely identify each user.
Litmus
source share