当我尝试着将我的应用推向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

在推送代码之前。

其他回答

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

以下是Heroku官方文章:

初始化GIT

$ cd myapp
$ git init

$ git add .
$ git commit -m "my first commit"

然后创建(初始化)heroku应用程序:

$ heroku create YourAppName

最后添加git远程:

$ heroku git:remote -a YourAppName

现在你可以安全地部署你的应用程序:

$ git push heroku master

您应该等待一段时间,看看在部署时控制台是否没有任何错误/中断。详情请看heroku的文章。

英雄吉尔:遥控器

如果heroku已经安装在开发人员的机器上,那么以下命令将很好地用于在heroku上部署ruby on rails应用程序。#表示注释

heroku登录 heroku创建 Heroku键:添加#将本地机器键添加到Heroku,以便 避免重复输入密码 Git push heroku master Heroku rename new-application-name #重命名应用程序 自动生成的heroku名称以外的首选名称

我必须以管理员权限运行Windows命令提示符