解决方法,git需要走代理服务器。
git走代理的方法:
查看你的代理服务器
socket的话就用:
git config –global http.proxy ‘socks5://127.0.0.1:1080’
git config –global https.proxy ‘socks5://127.0.0.1:1080’
http的话:
git config –global https.proxy http://127.0.0.1:1080
git config –global https.proxy https://127.0.0.1:1080
例如:我的是socks5://127.0.0.1:1080
则用
git config –global http.proxy ‘socks5://127.0.0.1:1080’
git config –global https.proxy ‘socks5://127.0.0.1:1080’
是哪个就把proxy后面的地址替换成哪个