On Fri, Apr 24, 2009 at 7:51 AM, Damien MATHIEU <[email protected]> wrote: > When I work on a new feature for my application, I do it in a specific > branch; I commit in that branch. > [...] > For example, have xxx.heroku.com on the branch master of the > application xxx. > And yyy.xxx.heroku.com on the branch yyy of the same application.
If I'm understanding you correctly, you should be able to do this with two different remotes, and using git's syntax to pushing to a specific branch on the remote. Assuming that you have branches "master" and "experimental", for example: heroku create myapp-experimental --remote app2 git checkout experimental git push app2 master That will push whatever the current branch is, in this case experimental, to the master branch on Heroku. Adam --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Heroku" 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/heroku?hl=en -~----------~----~----~----~------~----~------~--~---
