我已经把自己搞得一团糟。我正在部署一个 Wordpress PHP 应用程序,基本上在主题目录中有一大堆 git 存储库,以及我从 github 项目中克隆的父主题。我成功部署了 Wordpress,但 git 忽略了已经在其单独的 repos 中跟踪的主题,所以我返回并将主题复制到不同的目录,这样它们就不会被跟踪,并删除了 .git 文件夹。
我的问题是,在这样做之后,Heroku 不会让我做 a git push heroku master
,但会退回此错误消息:
Writing objects: 100% (972/972), 2.73 MiB | 76 KiB/s, done.
Total 972 (delta 46), reused 0 (delta 0)
! Heroku push rejected due to an unrecognized error.
! We've been notified, see http://support.heroku.com if the problem persists.
To git@heroku.com:....git
! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'git@heroku.com:....git'
我试过git pull heroku master
了,这给了我“已经是最新的”。我也尝试添加-f
标志,但这也不起作用。有时在 Heroku 中拒绝该应用程序。
有任何想法吗?
编辑:
我也尝试过这里的建议:failed to push some refs to git@heroku.com:myapp.git
包括从 heroku/master 创建一个新分支,然后立即将其推送到 heroku。它失败。