Heroku not deploying from a different branch -


i'm trying deploy heroku application using different branch master. when run:

git push heroku <mybranch> 

nothing happens , application not deployed.

does know what's going on?

thanks.

heroku apps use master branch (although can push branches want). if really want deploy branch, have push master branch on heroku remote:

git push heroku mybranch:master 

Comments

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -