无法连接到github.com:8080

时间:2013-10-13 09:15:21

标签: git github

我创建了一个新的Git存储库但是无法使用终端推送它。

这就是我正在做的事情

git remote add origin https://github.com/dilipptt/first_app.git
git push origin master

以及我要回来的事情:

  

错误:无法连接到github.com:8080;访问https://github.com/dilipptt/first_app.git/info/refs?service=git-receive-pack时拒绝连接   致命:HTTP请求失败

1 个答案:

答案 0 :(得分:0)

根据您所做的更改,您配置的GitHub URL错误。您应该使用https://github.com/foo/bar.git中的HTTP网址或git@github.com:foo/bar.git中的SSH网址

第二次添加原点时,您指定了git://git@github.com/dilipptt/first_app.git

相反,你应该指定

git remote add origin git@github.com/dilipptt/first_app.git

请复制并粘贴错误中的文字,而不是发布屏幕截图。对于想要帮助你的人来说,后者很难。