Я только что изменил свой пароль GitHub.
Я пытался git push
в закрытое хранилище, над которым я работал.
Получил ошибку
remote: Invalid username or password.
fatal: Authentication failed for 'https://github.com/*/*/'
Я провел поиск и в итоге запустил следующие команды, чтобы попытаться исправить:
$ git config --global credential.helper osxkeychain
$ git push
remote: Repository not found.
fatal: repository 'https://github.com/*/*/' not found
$ git config --global --unset user.password
$ git push
remote: Repository not found.
fatal: repository 'https://github.com/*/*/' not found
$ vim ~/.gitconfig
Я удаляю [credential]
раздел
$ git push
remote: Repository not found.
fatal: repository 'https://github.com/*/*/' not found
Меня никогда не просят ввести имя пользователя / пароль.
Как мне снова войти в систему или получить права на передачу в мой удаленный частный репозиторий GitHub?