HTTP Basic: Access denied fatal: Authentication failed

GitGitlab

Git Problem Overview


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?

Git Solutions


Solution 1 - Git

Open CMD (Run as administrator) type command:

git config --system --unset credential.helper

then enter new password for Git remote server.

Solution 2 - Git

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.

Solution 3 - Git

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.

Solution 4 - Git

i coped with same error and my suggestion are:

  1. Start with try build another user in git lab
  2. Recheck username & password (although it sounds obvious)
  3. Validate the windows credential (start -> "cred")
  4. Copy & paste same URL like you get from git lab, the struct should be:

> http://{srvName}/{userInGitLab}/{Repository.git} no '/' at the end

  1. Recheck the authorization in GitLab
  2. Give an attention to case sensitive

Hope one of the above will solve it.

Solution 5 - Git

If username and password is prompted. Just add Gitlab username and password for clone.

For pop up dialog asking credential, follow the steps below.

> 1. Go to "control panel" > 2. user accounts > 3. manage credentials > 4. windows credentials > 5. git:https://[email protected] > 6. click on down arrow > 7. Click remove.

Hope this helps!

Solution 6 - Git

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.

Solution 7 - Git

Go to your Credential manager => git credentials Check your git credentials and check your password.

This worked for me.

Solution 8 - Git

  1. Generate an access token with never expire date, and select all the options available.
  2. Remove the existing SSH keys.
  3. Clone the repo with the https instead of ssh.
  4. Use the username but use the generated access token instead of password.

enter image description here

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

Solution 9 - Git

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

Solution 10 - Git

Before digging into the solution lets first see why this happens.

Before any transaction with git that your machine does git checks for your authentication which can be done using

  1. An SSH key token present in your machine and shared with git-repo(most preferred) OR
  2. Using your username/password (mostly used)

Why did this happen

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

Solution

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

Solution 11 - Git

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.

Solution 12 - Git

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.

[tag:macOS][tag:git][tag:gitlab][tag:authentication]

Solution 13 - Git

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.

Solution 14 - Git

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.

Solution 15 - Git

  • Try if it works on the Git Bash
  • Have you added a ssh key to your account? If yes remove it and try again. If not add one and try the ssh url.
  • You don't necessarily need Tortoise Git but it may also work around your problem
  • Try to re-install Git without the Git Credential Manager for Windows

When you've fixed the push problem you will also be able to clone it when it is private or internal.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionDao Minh ThuView Question on Stackoverflow
Solution 1 - GitDao Minh ThuView Answer on Stackoverflow
Solution 2 - GitKlevisGjNView Answer on Stackoverflow
Solution 3 - GitDebView Answer on Stackoverflow
Solution 4 - GitshdrView Answer on Stackoverflow
Solution 5 - GitSidsoView Answer on Stackoverflow
Solution 6 - GitAnonymusHelperqView Answer on Stackoverflow
Solution 7 - GitsaiView Answer on Stackoverflow
Solution 8 - GitSitecore SamView Answer on Stackoverflow
Solution 9 - GitSahil KashyapView Answer on Stackoverflow
Solution 10 - GitManasvi MittalView Answer on Stackoverflow
Solution 11 - GitjsimonView Answer on Stackoverflow
Solution 12 - GitAdityaView Answer on Stackoverflow
Solution 13 - GitPredhin SapruView Answer on Stackoverflow
Solution 14 - GitLaurinOView Answer on Stackoverflow
Solution 15 - GitRohit PoudelView Answer on Stackoverflow