当我尝试着将我的应用推向Heroku时,我得到了这样的回应:

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

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

我尝试过“heroku keys:add”,但仍然得到相同的结果。 我已经有一个ssh密钥为我的GitHub帐户。


当前回答

对我来说,答案是在运行heroku create或git push heroku master之前,cd到应用程序的根目录

其他回答

输入heroku create 然后git push heroku master(这是在使用'git init'创建存储库并提交项目之后)

对我来说,答案是在运行heroku create或git push heroku master之前,cd到应用程序的根目录

我忘了在运行git push heroku main之前创建一个域名。创建域名解决了这个问题。

我的问题是我使用git(而不是heroku git)来克隆应用程序。然后我必须:

git remote add heroku git@heroku.com:MyApp.git

记得将MyApp更改为您的应用程序名称。

然后我可以继续:

git push heroku master

我遇到了同样的错误,而且是一个新手犯的错误:我输入的Heroku是大写的“H”,而不是小写的。

我知道这当然不是每个遇到这种错误的人的解决方案,但在我的情况下是这样的。