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。这是一件新事吗?
答案 0 :(得分: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
答案 1 :(得分:1)
您的原始远程网址中有拼写错误。它是github.com
,而不是github
。
首先,删除你的坏遥控器:
git remote rm origin
然后用正确的地址添加回来:
git remote add origin ssh://git@github.com/Mallanaga/ABCD.git
之后,您应该可以毫无困难地运行git push -u origin master
。