不能做到Heroku的初始推送 - 出了什么问题?

时间:2012-10-10 22:59:30

标签: git heroku

调用heroku后创建[name]我正在尝试使用git push heroku master,我收到以下错误:

git@heroku.com: No such file or directory
fatal: The remote end hung up unexpectedly

我环顾四周,无法弄清楚造成这种情况的原因。我可以通过SSH -v git@heroku.com获取“进入交互式会话”。我可以推送其他遥控器。我已经使用git remote -v验证了正确的Heroku遥控器存在。这些是我的遥控器:

heroku  git@heroku.com:akicon.git (fetch) 
heroku  git@heroku.com:akicon.git (push)

我该怎么办?我已经尝试卸载所有内容并重新安装。事实上,这就是这个问题首先出现的原因。

感谢任何帮助。

1 个答案:

答案 0 :(得分:2)

你可能会像这样设置你的git遥控器:

git remote add heroku git@heroku.com

这就是我可以重现这个问题的方法。

要解决此问题,请删除遥控器并添加正确的网址:

git remote rm heroku
git remote add heroku git@heroku.com:[your-heroku-application's name].git