Reputation: 52516
I use GitLab Community Edition 9.1.3 2e4e522 on Windows 10 Pro x64. With Git client.
Error
Cloning into 'project_name'...
remote: HTTP Basic: Access denied
fatal: Authentication failed for 'http://[email protected]/my_user_name/project_name.git/'
How to fix it?
Upvotes: 61
Views: 273933
Reputation: 1
This happened to me after my access token expired.
Upvotes: 0
Reputation: 1
For anyone getting the error:
remote: HTTP Basic: Access denied fatal: Authentication failed for xxxxx
Make sure your gitlab user name DOES NOT contain a dash.
For example, I had: [email protected]
which returned the error above.
I changed it to: [email protected]
, and it did not return the error.
Upvotes: 0
Reputation: 1
stderr: remote: HTTP Basic: Access denied fatal: Authentication failed for
I found out that I got this error because I entered the wrong password in the credential on Jenkins. When I made sure I typed the correct password, my problem was solved. git fetch etc. via server. You can run a command and make sure that the username and password are correct.
Upvotes: 0
Reputation: 383
I solved with:
Upvotes: 0
Reputation: 155
If username and password is prompted. Just add Gitlab username and password for clone.
For pop up dialog asking credential, follow the steps below.
- Go to "control panel"
- user accounts
- manage credentials
- windows credentials
- git:https://[email protected]
- click on down arrow
- Click remove.
Hope this helps!
Upvotes: 6
Reputation: 966
i coped with same error and my suggestion are:
http://{srvName}/{userInGitLab}/{Repository.git} no '/' at the end
Hope one of the above will solve it.
Upvotes: 8
Reputation: 359
in ubuntu 20.04 ,
vscode terminal was unable to pull/push returned this error
remote: HTTP Basic: Access denied
fatal: Authentication failed for
Simply opened regular terminal in the folder location git pull/push worked properly
Upvotes: 4
Reputation: 136
The updating of the password in the windows credential manager was not the solution for me.
I had to set a different remote url, by:
git remote set-url origin https://gitlab....git
The url in this case was the one that could be found in Gitlab under Clone -> Clone with HTTPS. It was not the one in the command line instructions.
Upvotes: -1
Reputation: 250
Before any transaction with git that your machine does git checks for your authentication which can be done using
In simple words, this happened because the credentials stored in your machine are not authentic i.e.there are chances that your password stored in the machine has changed from whats there in git therefore
Head towards, control panel and search for Credential Manager look for your use git url and change the creds.
There you go this works with mostly every that windows keep track off
Upvotes: 3
Reputation: 377
alternatively you can set remote to http by using this command in the existing repo, and use this command git remote set-url origin https://gitlab.com/[username]/[repo-name].git
Upvotes: 4
Reputation: 151
For my case, I initially tried with
git config --system --unset credential.helper
But I was getting error
error: could not lock config file C:/Program Files/Git/etc/gitconfig: Permission denied
Then tried with
git config --global --unset credential.helper
No error, but still got access denied error while git pulling.
Then went to Control Panel -> Credentials Manager > Windows Credential and deleted git account.
After that when I tried git pull again, it asked for the credentials and a new git account added in Credentails manager.
Upvotes: 14
Reputation: 341
I use VS Code on my mac OS and GitLab for my project. I tried so many ways but it worked simply for me by resetting the remote origin of your project repository with the below command:
cd <local-project-repo-on-machine>
git remote set-url <remote-name> <remote-url>
for ex: git remote set-url origin https://<project-repository>.git
Hope it helps someone.
Upvotes: 1
Reputation: 51
This can happen also because of a change in the password and since Git Credential Manager caches it, so if that's the case 1. Open Credential Manager in Windows 2. Search for your GIT credential and reset it to the new password.
Upvotes: 5
Reputation: 319
Go to your Credential manager => git credentials Check your git credentials and check your password.
This worked for me.
Upvotes: 4
Reputation: 1
Edit the entry(possibly the password field that may have changed) for git: inside Generic Credentials section of Windows Credentials which can be accessed from Control Panel. Please note this is for Windows OS.
Upvotes: 0
Reputation: 691
Im my case i was using Git Credential Manager for Windows (it was installed by default, I didn't install it manually)
Credentials Manager had saved my old password but i changed it lately.
If you are in the same conditions, to solve this problem: Go to Control Panel -> Credentials Manager and delete git account. After that it will ask you again for the credentials.
Upvotes: 28
Reputation: 27
A simple git fetch/pull command will throw a authentication failed message. But do the same git fetch/pull command second time, and it should prompt a window asking for credential(username/password). Enter your Id and new password and it should save and move on.
Upvotes: 1
Reputation: 1889
When you've fixed the push problem you will also be able to clone it when it is private or internal.
Upvotes: -2
Reputation: 52516
Open CMD (Run as administrator) type command:
git config --system --unset credential.helper
then enter new password for Git remote server.
Upvotes: 94