Reputation: 43
When I am trying to clone the repo from GitLab, I am getting the below issue :
Cloning into 'path'...
fatal: unable to access 'https://gitlab.com/shared/<my repo>.git/': The requested URL returned error: 464
I tried adding windows credentials manually into "Windows credentials" in the control panel, but it did not work, and getting the same issue.
Upvotes: 2
Views: 1255
Reputation: 665
I think the problem is in the URL address you are inputting.
To clone a repo, go to the repo page and choose blue Clone
button to the right:
Then you can choose whether you want to clone via SSH or HTTPS. Since you had problem with URL, you want to choose HTTPS
one. Simply click on the clipboard icon and paste it to
git clone URL
You should be good to go.
Upvotes: 2