I'm having trouble accessing my gitlab repo through SSH.
When trying the connection through below line I get authenticated.
ssh -T git@gitlab.<mydomain>
But when trying to access through the lines below its not prompting for my SSH password.
PS ~> git clone git@gitlab.<mydomain>:<repo name>.git
Cloning into '<repo name>'...
git@gitlab.<mydomain>'s password:
Permission denied, please try again.
The git remote -v seems to be correct:
origin git@gitlab.<mydomain>:<repo name>.git (fetch)
origin git@gitlab.<mydomain>:<repo name>.git (push)
Any more ideas on how to authenticate through SSH?