当我尝试着将我的应用推向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访问的所有应用程序

heroku apps

并检查你的应用程序是否存在 然后

 execute heroku git:remote -a yourapp_exist

其他回答

如果这个错误弹出,这是因为没有名为Heroku的远程。当你创建Heroku时,如果git远程不存在,我们会自动创建一个(假设你在一个git repo中)。要查看遥控器,输入:

“git remote -v”。#对于一个名为“appname”的应用程序,你将看到以下内容:

$ git remote -v
heroku git@heroku.com:appname.git (fetch)
heroku git@heroku.com:appname.git (push)

如果你看到你的应用程序的遥控器,你可以“git push master”并替换为实际的遥控器名称。

如果没有,你可以用下面的命令添加遥控器:

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

如果你已经添加了一个名为Heroku的遥控器,你可能会得到这样的错误:

fatal: remote heroku already exists.

所以,然后删除现有的远程,并用上面的命令再次添加它:

git remote rm heroku

希望这对你有所帮助……

首先,您必须安装Heroku才能识别CLI

npm install -g heroku

NPM命令需要安装node.js

你可以下载node.js: https://nodejs.org/en/download/

然后您必须登录进行身份验证

heroku login

如果你没有现存的heroku回购

heroku create

否则,如果你有一个现有的heroku回购

git remote add heroku git@heroku.com:<your app>.git

然后你可以继续推

git push heroku main

对于那些试图让heroku在任意代码IDE上工作的人:

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

遵循以下步骤:

$ heroku login

创建一个新的Git存储库 在新目录或现有目录中初始化git存储库

$ cd my-project/
$ git init
$ heroku git:remote -a appname

部署应用程序 将代码提交到存储库,并使用Git将其部署到Heroku。

$ git add . 
$ git commit -am "make it better"
$ git push heroku master

现有Git存储库 对于现有的存储库,只需添加heroku远程

$ heroku git:remote -a appname

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