Git无法推送到git存储库

时间:2014-02-16 08:20:12

标签: git github

当我尝试推送到git存储库时,我收到以下错误。请帮助解决这个问题

Test@DT0610QV14001 ~/hello (master)
$ git push -u origin master
fatal: unable to access 'https://github.com/babupca/hello.git/': Failed connect to github.com:443; No error

1 个答案:

答案 0 :(得分:0)

通常当通过HTTPS推送失败时,值得尝试切换到SSH:

git remote set-url origin git@github.com:babupca/hello.git

当然,您有Github SSH密钥为set up

更新:如果SSH方式出现类似错误,请检查related thread

更新:如果您知道自己落后于代理,请检查another related thread