我试图更改我的Heroku应用程序推送的git repo(以前是多版本包),但是我收到了错误:
> git push -f heroku master
> Fetching repository, done. Counting objects: 4111, done. Delta
> compression using up to 8 threads. Compressing objects: 100%
> (3868/3868), done. Writing objects: 100% (4111/4111), 39.41 MiB |
> 579.00 KiB/s, done. Total 4111 (delta 710), reused 0 (delta 0)
>
> -----> Removing .DS_Store files
> -----> Fetching custom git buildpack... done
>
> ! Push rejected, no Cedar-supported app detected
>
> To git@heroku.com:in2u.git ! [remote rejected] master -> master
> (pre-receive hook declined)
奇怪的是,如果heroku实际上被推送到in2u.git的旧内容,这个错误才有意义,但是我告诉它从我的本地推送到heroku遥控器。
此SO帖子似乎没有任何内容适用:
感谢您的帮助!
答案 0 :(得分:1)
您可能需要从Heroku配置中删除BUILDPACK_URL
设置,以避免它继续拉自定义构建包。 Heroku配置不是存储库的一部分,因此只需从一个干净的存储库推送就不会删除它。