其他分享
首页 > 其他分享> > fatal: repository 'http://xxx.xxx.com/xxx/xxx.git/' not found

fatal: repository 'http://xxx.xxx.com/xxx/xxx.git/' not found

作者:互联网

今天在linux服务器上修改了git的密码,结果在pull的时候一直报fatal: repository 'http://xxx.xxx.com/xxx/xxx.git/' not found,查了半天各种改都没解决,最后查到执行这个命令:git config --global --unset credential.helper,完了再执行git pull命令时就让输入用户名密码了。也可以用命令git remote set-url origin http://username:passwd@xxxx.xxxx.com/xxxx/xxxxx.git设置后,每次执行命令时就不用再输入用户名密码了。

标签:git,http,xxx,xxxx,fatal,com
来源: https://www.cnblogs.com/zy0209/p/16621164.html