Heroku only responds to the master branch, so you need to push your local topic branch into the heroku remote master branch:
$ git push heroku user-content:master (You may need to add --force) -k- On Wed, Dec 28, 2011 at 12:31 PM, Anil Punjabi <[email protected]> wrote: > Hi all, > > I just pushed content from my "user-content" brach to heroku. > NOTE: Not my master branch. > > I am unable to run rake though -- any thoughts? > > Also, how can I view the deployed content on heroku.... it still shows the > blank page. > > Should I only be pushing content from the master branch each time? > > $git push heroku user-content > Counting objects: 75, done. > Delta compression using up to 2 threads. > Compressing objects: 100% (47/47), done. > Writing objects: 100% (50/50), 5.31 KiB, done. > Total 50 (delta 34), reused 0 (delta 0) > To [email protected]:xxxx-xxxxxxxx-5608.git > * [new branch] user-content -> user-content > > $ heroku rake db:migrate > ! App has an empty code repository > > > Thanks in advance. > -Anil > > -- > You received this message because you are subscribed to the Google Groups > "Heroku" group. > To view this discussion on the web visit > https://groups.google.com/d/msg/heroku/-/HLwQYXwiekoJ. > 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. -- 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.
