githubteacher / automatic-succotash

A repository to practice on Sept 19-20
2 stars 3 forks source link

Problems with `git push` #22

Open githubteacher opened 7 years ago

githubteacher commented 7 years ago

If you received:

$ git push
remote: Invalid username or password.
fatal: Authentication failed for 'https://github.com/githubteacher/automatic-succotash.git/'

This is caused by the Windows Credential Manager, known as manager. You can unset it with:

$ git config --system --unset credential.helper

Then try your git push again. After entering your username and password, it should work :white_check_mark:

$ git push
Username for 'https://github.com': githubteacher
Counting objects: 3, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 422 bytes | 422.00 KiB/s, done.
Total 3 (delta 0), reused 0 (delta 0)
To https://github.com/githubteacher/automatic-succotash.git
   c4e31f2..680256a  githubteacher-orlando -> githubteacher-orlando