Github错误:无法连接到443端口

时间:2015-12-01 13:11:55

标签: shell github

我正在尝试使用以下文档在Windows 7上本地构建appinventor:https://docs.google.com/document/d/1Xc9yt02x3BRoq5m1PJHBr81OOv69rEBy8LVG_84j9jc/pub#h.5p32kqx16c2d

我已经下载了第3部分中列出的所有软件,并通过从shell运行以下git命令克隆git存储库来继续构建app inventor:git clone https://github.com/mit-cml/appinventor-sources.git

我一直收到以下错误:无法连接到github 443错误

我已经厌倦了Google搜索并找到了这个:GitHub - failed to connect to github 443 windows/ Failed to connect to gitHub - No Error

我在这个领域没有任何经验,所以我不明白所提到的任何解决方案,你能不能一步一步地通过最佳解决方案来帮助我?

我在一家公司工作,所以我无法像他们提到的那样获得代理,或者防火墙可能会阻止它。

提前谢谢!

1 个答案:

答案 0 :(得分:4)

如果您位于公司防火墙后面,并且所有请求都通过代理服务器,则必须先设置Git代理,然后再运行任何get命令,如pull,fetch和push命令。

要为HTTP和HTTPS设置Git代理,请在git bash shell中使用以下Git命令

git config --global http.proxy http://username:password@proxy.server.com:8080
git config --global https.proxy http://username:password@proxy.server.com:8080

//Replace username with your proxy username
//Replace password with your proxy password
//Replace proxy.server.com with the proxy domain URL.
//Replace 8080 with the proxy port no configured on the proxy server.

检查How to configure Git proxyHow to unset the Git Proxy了解更多详情