自学内容网 自学内容网

git clone相关问题和bug记录

1.win11上面git clone --recursive https://github.com/naver/mast3r,一直报错:

Cloning into 'mast3r'...
fatal: unable to access 'https://github.com/naver/mast3r/': Failed to connect to 127.0.0.1 port 7890 after 2021 ms: Couldn't connect to server

解决:是因为代理地址错了,错误中显示代理设置是7890,而我本机的代理则是7897,所以修改一下即可:

1)寻找本机代理

2)设置好代理

关闭git的代理git config --global  --unset http.proxy

设置代理git config --global http.proxy http://127.0.0.1:本机代理(我的是7897)


原文地址:https://blog.csdn.net/m0_74310646/article/details/143695214

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!