0
C:\Dropbox\Apps\rails_projects\ABCD>git push -u origin master
ssh: github: no address associated with name
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

/耸耸肩。我已经这样做了十几次了。不知道这里发生了什么。我可以推送其他应用程序。有什么独特之处,这里...

其他正在运行的应用程序:

C:\Dropbox\Apps\rails_projects\ecorebox>git remote -v
heroku  git@heroku.com:ecorebox.git (fetch)
heroku  git@heroku.com:ecorebox.git (push)
origin  https://github.com/Mallanaga/ecorebox.git (fetch)
origin  https://github.com/Mallanaga/ecorebox.git (push)

新应用,不工作:

C:\Dropbox\Apps\rails_projects\ABCD>git remote -v
origin  ssh://git@github/Mallanaga/ABCD.git (fetch)
origin  ssh://git@github/Mallanaga/ABCD.git (push)

不知道为什么这个新应用坚持使用 ssh。这是新事物吗?

4

2 回答 2

2

尝试

ssh://git@github.com/Mallanaga/ABCD.git

代替

ssh://git@github/Mallanaga/ABCD.git

命令是

git remote set-url origin ssh://git@github.com/Mallanaga/ABCD.git
于 2013-09-07T02:18:39.720 回答
1

您的原始远程 URL 中有错字。是github.com,不是github

首先,删除你的坏遥控器:

git remote rm origin

然后用正确的地址添加回来:

git remote add origin ssh://git@github.com/Mallanaga/ABCD.git

之后,您应该可以git push -u origin master毫无问题地运行。

于 2013-09-07T02:45:17.690 回答