Reputation: 67
While trying to clone the project from GitLab I'm getting the below error:
Cloning into 'project Name'...
remote: HTTP Basic: Access denied
fatal: Authentication failed for 'project GitLab URL'
We tried the below command from this thread.
git config --system --unset credential.helper
After trying the above command, the Git CMD is asking to enter the username and password. We are able to enter the username but we were not able to enter the password.
Cloning into 'project Name'...
Username for 'https://gitlab.com': Name
Password for 'https://[email protected]':
remote: HTTP Basic: Access denied
fatal: Authentication failed for 'project GitLab URL'
Also, we tried to remove the GitLab entry from the control panel like this blog. It also not solved the issue. Why I am not able to enter the password on GitLab?
Upvotes: 3
Views: 8535
Reputation: 7063
Too long for a comment: As decribed here, you can either
https://gitlab.com/gitlab-tests/sample-project.git
.[email protected]:gitlab-tests/sample-project.git
.As discribed in the autentifcation section,
Upvotes: 3