更改密码,无法推送到专用存储库

时间:2018-10-30 12:03:19

标签: git github

我刚刚更改了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存储库的推送权限?

0 个答案:

没有答案