Github enterprise - remote: Password authentication is not available for Git operations

181.5k views Asked by At

My git was working fine, then without changing anything than the following problem started to happen, I have tried resetting the cache in

credentials.helper

and have gone through pretty much every stackoverflow answer I could find

remote: Password authentication is not available for Git operations.
remote: You must use a personal access token or SSH key.
remote: See https://github.ibm.com/settings/tokens or
'https://github.ibm.com/WBurney/Blockchain_SDO.git/': 
The requested URL returned error: 403

Thanks

9

There are 9 answers

13
VonC On BEST ANSWER

If you have registered a public ssh key to your GitHub enterprise account, you could side-step the issue using an ssh url

cd /path/to/repo
git remote set-url origin [email protected]:WBurney/Blockchain_SDO.git

Then any command like git push/git fetch/git pull/git ls-remote would use the SSH URL set by git remote set-url.

But regarding your original issue, try and follow "Creating a personal access token for the command line".

If you are on Mac, update your credentials from the OSX Keychain.

You might need to remove an old cached credential first.
(As commented by RayLoveless)

As drazen Bjelovuk confirms in the comments:

Updating the password to a personal token in my OSX Keychain worked for me.

0
rohan chikorde On

You need to reset the credential. Open GIT CMD and type below command

git credential reject

press enter. The cursor would be waiting for the next input. Then type

protocol=https
host=git.example.com

Replace git.example.com, with your link.

Press "enter" twice so let git know that's the end of the command. Now you need two things before any git operations as it will first validate your username and password.

  1. Username - It would present near your logo under signed in as. Example this is mine. Give the exact username -

enter image description here

  1. Password -
  • Click Settings
  • In the left sidebar, click Developer settings
  • Personal access tokens
  • Generate new Token (copy this token somewhere. It won't show up again)

Next, go to git cmd and do your git operation. for example -

git clone https://consulting-github.com/Rohan-Chikorde/example.git

Once started, it will prompt for username and password. Give the username example: Rohan-Chikorde and password: e67682yourgeneratedtoken as described above and you would be good to go.

1
Atul Soman On

The accepted answer will work only for ssh, not for https.

The cache reset commends seems to have recently changed. For me that eventually made it work.

git credential reject
protocol=https
host=github.<YOUR_COMP>.com
0
Ali Aref On

for me it was an easy process to go as

  1. generate my token
  2. git remote remove origin
  3. git remote add origin https://<token>@<git_url>.git
  4. now try the command(push,pull,..) again.
0
Gaurav Chaudhary On

First you should try to generate Personal Access Token(PAT) and then put it in Credential Manager as a password to your GitHub. For that: Go to Credentials Manager > Windows Credentials > GitHub(Under generic credentials). Now put your PAT as a password.

If you are still not able to clone the repo then try the method given in one of the answers here by Ajay, it worked for me once: git clone https://<user-name>:<git-token>@<github-path.git>

5
Omar YAYA On

Another solution that worked for me was changing the credentials via the Windows Credentials Manager:

1) Clear your cached credentials (thanks @Rayloveless).

2) Follow the steps in this link to create an access token.

  • In the upper-right corner of any page, click your profile photo.
  • Click Settings
  • In the left sidebar, click Developer settings
  • Personal access tokens
  • Generate new Token

3) Go to "Windows Credential Manager" and look for your Github Enterprise account.

4) Click modify and replace the password with the token you generated.

0
Monalisa Das On

For me it worked when I deleted the old generated token and generated new one and used that

0
Jayaprakash Nagabhirava On
git remote set-url origin [email protected]:WBurney/Blockchain_SDO.git

The above git command will works

0
Ajay Kumar On

Try below one -

git clone https://<user-name>:<git-token>@<github-path.git>