> - deployment from a git repo, configurable branch (fleet does it, but > works only from master) >
As long as you're doing a `git push` to deploy, you can push any branch to the remote master. For example, if you wanted to push your local `dev` branch use: git push +dev:master The `+` tells the remote that it's okay to squish whatever is currently deployed to the remote master. This works on Heroku, and most all PaaS providers. -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
