Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am creating a facebook application and I am using this Heroku for the first time as I was following the procedure provided in the link instruction. While deploying to Heroku, the third step in instruction i.e. pushing the modified code up to Heroku with

git push heroku master

it throws a following error

To git@heroku.com:xxxxxxxx.git ![rejected] master -> master(non-fast - forward) error: failed to push some refs to 'git@heroku.com:xxxxxxxxxx.git' To prevent you from losing history, non-fast-forward updates were rejected Merge the remote changes (e.g 'git pull') before pushing again. See the 'Note about fast-forwards' sections of 'git push --help' for details.

Please give me the solution!!

share|improve this question
Have you tried what the message suggests? – “Merge the remote changes (e.g 'git pull') before pushing again.” – CBroe Sep 29 '12 at 17:43
tried but its still giving the same message – Rahul Varma Sep 29 '12 at 18:26

1 Answer

That's because of git. You can't push to a server if your locale version is outdated.

The simple way to go would be to pull first:

git add -A
git commit -m "add my locale files"
git pull heroku master
# All goes well or you have a merge conflict (if so, you resolve conflicts). Then:
git push heroku
share|improve this answer
Hey Simon, it again throws a message: The following untracked working tree files would be overwritten by merge: – Rahul Varma Sep 29 '12 at 17:55
You have to add and commit your file before. - edited the response – Simon Boudrias Sep 29 '12 at 17:56
I have added and committed before performing the pull operation or Do i need to do it again? – Rahul Varma Sep 29 '12 at 17:58
call git status and make sure your working directory is clear – Simon Boudrias Sep 29 '12 at 17:59
Simon, git status performed and displaying modified folder and untracked files and at the end of the message: no changes added to commit – Rahul Varma Sep 29 '12 at 18:05
show 5 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.