Heroku - 推送到git存储库时出现致命错误

时间:2013-10-01 04:17:02

标签: windows git heroku push

我使用Git Bash将我的文件推送到git存储库。我这样做很好:

heroku login
git add .

但我尝试了这个:

`git push heroku master

出现以下错误:

fatal: 'heroku' does not appear to be a git repository
fatal: could not read from remote repository

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

我尝试了以下命令,但它们不起作用:

heroku keys:clear
heroku keys:add

我是Git和Heroku的新手,任何帮助都会受到赞赏。

1 个答案:

答案 0 :(得分:4)

您尚未创建Heroku应用程序。

您需要运行heroku create命令,该命令将创建一个Heroku应用程序,并添加一个名为heroku的git远程指向您新创建的应用程序。之后git push heroku master应该可以正常工作。