githubteacher / githubteacher/automatic-succotash
Problems with `git push`
- Dominant language
- No language data
- Stars
- 2
- Forks
- 3
- PR merge metrics
- No merged PRs in 30d
Description
If you received:
```shell
$ 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:
```shell
$ git config --system --unset credential.helper
```
Then try your `git push` again. After entering your username and password, it should work :white_check_mark:
```shell
$ 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
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.