这是我第一次接触 Heroku(真的很神奇)。我按照这些步骤将我的第一个应用程序部署到 heroku。
git init
git add .
git commit -m 'first commit'
heroku create abcfirstapp
git remote add origin git@heroku.com:abcfirstapp.git
git push heroku master
我得到了这样的错误
Heroku 推送被拒绝,没有检测到 Cedar 支持的应用程序到 git@heroku.com:abcfirstapp.git [remote.rejected] master -> master (pre-receive hook denied) 错误:未能将一些参考推送到 'git@heroku. com:abcfirstapp.git'
我很确定我的 php 文件可能是编写的,因为它在我的本地 xampp 服务器上运行良好
<?PHP phpinfo(); ?>
另一个问题是:当我尝试从 heroku 中使用
git pull heroku master
我有一个错误
致命:找不到远程参考主机
有人可以帮我吗?
谢谢