1

我创建了一个新的 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 请求失败

4

1 回答 1

0

通过您所做的更改,您配置的 GitHub URL 是错误的。您应该使用 HTTP urlhttps://github.com/foo/bar.git或 SSH urlgit@github.com:foo/bar.git

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

相反,您应该指定

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

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

于 2013-10-13T09:46:38.263 回答