赞
踩
问题:
从github上git clone失败:Failed to connect to github.com port 443: Connection timed out
解决办法:
网页上使用VPN可以打开github,说明在拉取代码时没有使用VPN进行代理。使用客户端的VPN,设置服务器使用客户端的VPN。
# 设置代理
git config --global http.proxy x.x.x.x:7890
git config --global https.proxy x.x.x.x:7890
# 查看代理
git config --global --get http.proxy
git config --global --get https.proxy
# 下载
git clone --recurse-submodules https://github.com/cvg/DeepLSD.git
# 取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。