2

调用 heroku create [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)

我应该怎么办?我已经尝试卸载所有内容并重新安装。事实上,这个问题似乎一开始就是这样出现的。

任何帮助表示赞赏。

4

1 回答 1

2

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

git remote add heroku git@heroku.com

这就是我可以重现此问题的方式。

要解决此问题,请移除遥控器并添加正确的 URL:

git remote rm heroku
git remote add heroku git@heroku.com:[your-heroku-application's name].git
于 2012-10-11T04:51:50.453 回答