I am unable to clone a Git repository, and getting this error:
krishna.soni@KRISHNACHANDRAS /c/Projects $ git clone http://stage.abc.com:10088/pqr
http://<
I was facing the same issue while setting up ssh for gitlab. I already have ssh for github and i could not overwrite that.
The steps that worked for me are :
ssh-add /path/to/new/id_rsa.config in ~/.ssh/ using. I used vi ~/.ssh/config/.# GitLab.com server
Host gitlab.com
RSAAuthentication yes
IdentityFile /path/to/new/id_rsa
After that restart the terminal and try pushing, it should work