我正在开发一个团队项目,我的分支是我想上传到heroku的分支。我创建了网站,我的文件index.php和composer.json是正确的。
我试图从我的分支机构推送到heroku:
git push heroku develop-mark
回复:
Counting objects: 98, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (90/90), done.
Writing objects: 100% (98/98), 68.22 KiB | 0 bytes/s, done.
Total 98 (delta 45), reused 0 (delta 0)
remote: Pushed to non-master branch, skipping build.
To https://git.heroku.com/warm-wave-1067.git
* [new branch] develop-mark -> develop-mark
答案 0 :(得分:0)
Heroku only builds from its master
branch,但这并不意味着您必须在本地master
工作:
此命令将忽略除
master
以外推送到Heroku的分支。如果您在本地处理另一个分支,则可以在推送之前合并到主服务器,或者指定要将本地分支推送到远程主服务器。要推送除master之外的分支,请使用以下语法:$ git push heroku yourbranch:master
在您的情况下,将您的本地develop-mark
分支机构推送到Heroku的master
,如下所示:
git push heroku develop-mark:master