-
Wigal, Jacob (CIV) authoredWigal, Jacob (CIV) authored
git-troubleshooting.md 1.29 KiB
Git Troubleshooting
Table of Contents
Fatal: HTTP request failed / authentication error
https://stackoverflow.com/questions/15381198/remove-credentials-from-git
Solution
If this problem comes on a Windows machine, do the following.
- Go to Credential Manager
- Go to Windows Credentials
- Delete the entries under Generic Credentials
- Try connecting again. This time, it should prompt you for the correct username and password.
Enter a commit message to explain why this merge is necessary
Solution
It's not a Git error message, it's the editor, as git uses your default editor.
To solve this:
- press "i" (i for insert)
- write your merge message
- press "esc" (escape)
- write ":wq" (write & quit)
- then press enter