错误:无法将某些引用推送到“ https://git.heroku.com/nameless-cliffs-57613.git”

时间:2019-03-08 07:26:13

标签: git heroku

我在Heroku中创建了一个新应用。 enter image description here

然后我在命令行中运行了

git init 
heroku create 
git add . 
git push -f heroku master

最后我得到这个错误:

 ! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'https://git.heroku.com/nameless-cliffs-57613.git'

enter image description here

能请你告诉我如何做到这一点。谢谢。

1 个答案:

答案 0 :(得分:0)

根据错误文本,由于您正尝试推送未编译的代码(即可能存在语法错误),因此pre-preceve挂钩未能通过推送。只需修复代码并再次推送即可。