运行 git heroku push master 时出现致命错误
Posted
技术标签:
【中文标题】运行 git heroku push master 时出现致命错误【英文标题】:Fatal error when I run git heroku push master 【发布时间】:2019-08-01 08:52:36 【问题描述】:我已经运行了以下代码,一切都很顺利:
git init
git add .
git commit —m 'name'
heroku create
但是当我运行这段代码时:
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 the correct access rights
and the repository exists.
【问题讨论】:
请先学习一些 Git 基础知识。当你运行这些命令时,你知道你在做什么吗? 虽然我没有使用 Heroku,但我想heroku create
里面没有像git remote add
这样的东西。那么git push heroku master
中“heroku”的引用为空。
【参考方案1】:
确保在 git push heroku master 之前执行“heroku create”
【讨论】:
【参考方案2】:也许,作为illustrated here,您在推送之前还需要一个命令:
cd /path/to/repo
heroku git:remote -a yourapp
【讨论】:
以上是关于运行 git heroku push master 时出现致命错误的主要内容,如果未能解决你的问题,请参考以下文章
Heroku git push heroku master 运行 cd client && npm run build 不停
git push 与 git push heroku master
git push heroku master:Heroku push 被拒绝,没有检测到 Cedar 支持的应用程序