Hi, What I do is have a separate directory for each app
/heroku/app1 /heroku/app2 For each app, do cd /heroku/app1 git init git add . git commit -m "initial commit" heroku create <your app name> git push heroku master cd /heroku/app2 <repeat> This will create separate heroku apps, and separate git repositories. When you run 'git push heroku master' it will know which app to push to. Henry On Wed, Jul 28, 2010 at 6:20 AM, barbq <[email protected]> wrote: > Hi, > > I've just created my second app, and I was wondering how do I control > git to push files into which app? > > Thanks.. > > -- > 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]<heroku%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/heroku?hl=en. > > -- 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.
