fatal: Authentication failed for http ...
解释:此命令会清除全局设置的 credential.helper 配置。清除后,再次运行 git pull 或 git push 时,Git 便会再次弹出输入用户名和密码的认证提示。链接:https://www.angularcorp.com/zh/post/github-personal-access-token-fatal-authentication/git clone 的时候出现的。
·
git clone 的时候出现的。
解决方式
git config --global --unset credential.helper
解释:此命令会清除全局设置的 credential.helper 配置。清除后,再次运行 git pull 或 git push 时,Git 便会再次弹出输入用户名和密码的认证提示
链接:https://www.angularcorp.com/zh/post/github-personal-access-token-fatal-authentication/
更多推荐
所有评论(0)