美文网首页
Git 问题总结及解决方案

Git 问题总结及解决方案

作者: BlessNeo | 来源:发表于2019-07-22 17:12 被阅读0次

    1. git push/pull 报权限错误:HTTP Basic: Access denied and fatal Authentication

    报这个错误一般是因为更改了账号密码导致的,解决办法如下:

    1. 终端cd 到工程目录,输入 git config --system --unset credential.helper, 运行,输入账号更改后的正确密码即可解决此问题;

    2. 如果输入git config --system --unset credential.helper后报could not lock config file /etc/gitconfig: Permission denied的错误,在命令前加sudo即可,即运行sudo git config --system --unset credential.helper

    Stack Overflow 对应的问题及解决方案链接

    GitLab remote: HTTP Basic: Access denied and fatal Authentication

    相关文章

      网友评论

          本文标题:Git 问题总结及解决方案

          本文链接:https://www.haomeiwen.com/subject/tcwwlctx.html