错误“连接到github.com失败”

时间:2013-01-07 14:44:16

标签: linux git github

我是一个以git开头的初学者。我在github上创建了我的帐户。我创建了一个新的存储库。但我无法使用终端推送或更新github中的更改。我正在运行以下命令:

mkdir ~/TestApplication
cd ~/TestApplication
git init
touch README
git add README
git commit -m 'first commit'
git remote add origin https://github.com/vinayptl/TestApplication.git
git push origin master

当我执行上一个命令git push origin master时,它会冻结一段时间并发出以下错误:

error: Failed connect to github.com:443; Connection timed out while accessing 
https://github.com/vinayptl/TestingApplication.git/info/refs

fatal: HTTP request failed

我正在使用Linux平台。可能是什么问题呢?我已经看到了SO的一些答案,但无法解决这个问题。

1 个答案:

答案 0 :(得分:2)

如果您有代理,ping不会对您有所帮助(it cannot ping through proxy)。

您需要设置http_proxyhttps_proxy环境变量 参见: