用git clone 报错:Failed to connect

2019-01-30  本文已影响0人  ae12

解决方法,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后面的地址替换成哪个

上一篇 下一篇

猜你喜欢

热点阅读