Heroku网站从不同的分支上传

时间:2015-11-12 22:10:50

标签: git heroku github

我正在开发一个团队项目,我的分支是我想上传到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

1 个答案:

答案 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