我使用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的新手,任何帮助都会受到赞赏。
答案 0 :(得分:4)
您尚未创建Heroku应用程序。
您需要运行heroku create
命令,该命令将创建一个Heroku应用程序,并添加一个名为heroku
的git远程指向您新创建的应用程序。之后git push heroku master
应该可以正常工作。