赞
踩
如果浏览器有代理服务并且可以正常打开github
那么尝试配置git 命令代理,host:port为代理地址
# http | https
git config --global http.proxy 127.0.0.1:7890
git config --global https.proxy 127.0.0.1:7890
#socks5代理
git config --global http.proxy socks5 127.0.0.1:7890
git config --global https.proxy socks5 127.0.0.1:7890
#关闭代理
git config --global --unset http.proxy
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。