当我尝试在Heroku上推送到Git存储库时,我得到以下错误:
致命:无法访问' https://git.heroku.com/xxxxxxxxx.git/':无法连接到github.com端口9836:操作超时
当我尝试从github.com克隆任何存储库时,我也会收到相同的错误。
我尝试了以下命令但没有成功
git config --global http.proxy github.com:9836
git config --global https.proxy github.com:9836
答案 0 :(得分:1)
这些命令tell Git to route all HTTP and HTTPS traffic through GitHub on port 9836:
git config --global http.proxy github.com:9836
git config --global https.proxy github.com:9836
当您尝试使用HTTPS Git推送到Heroku时,现在尝试使用GitHub作为代理。据我所知,GitHub并没有运营任何公共Git代理,我也不确定它们的目的是什么。
删除这些设置via
git config --global --unset http.proxy
git config --global --unset https.proxy
或手动修改~/.gitconfig
文件应解决您推送到Heroku的问题,假设您实际上并不需要代理。