我正在尝试使用以下文档在Windows 7上本地构建Appinventor:https ://docs.google.com/document/d/1Xc9yt02x3BRoq5m1PJHBr81OOvv69rEBy8LVG_84j9jc/pub#h.5p32kqx16c2d
我已经下载了第3节中列出的所有软件,并通过从外壳运行以下git命令来克隆git存储库,从而继续构建App Inventor:git clone https://github.com/mit-cml/appinventor-sources。吉特
我不断收到以下错误:无法连接到github 443错误
我已经厌倦了在Google搜索中发现以下内容:GitHub-无法连接到github 443 Windows /无法连接到gitHub-没有错误
我完全没有这个领域的经验,所以我不理解所提到的任何解决方案,请逐步尝试最佳解决方案,请尝试帮助我吗?
我在一家公司工作,所以我无法像他们提到的那样获得代理,否则防火墙可能会阻止它。
先感谢您!
如果您位于公司防火墙后面,并且所有请求都通过代理服务器,则必须先设置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.
检查如何配置的Git代理和如何取消设置的Git代理了解更多详情