git clone 报错,网上的方法都是搜索控制面板的凭证管理器,删除git相关的凭证,然后就可以了,但我遇到了这个问题,查看却没有凭证,解决方法如下:
一般配置方法:
git config --global (--replace-all) user.name "你的用户名"
git config --global (--replace-all) user.email "你的邮箱"
如果上述步骤没有效果,我们就需要清除缓存(.gitconfig)
git config --local --unset credential.helper
git config --global --unset credential.helper
git config --system --unset credential.helper
清除缓存之后我们每次提交代码的时候都需要输入用户名和密码
git config --global credential.helper store
作者:Nickyzhang
链接:https://www.jianshu.com/p/a1908f55bef8
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。