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
Post a Comment