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

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)


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.


Try below one -

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

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

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.