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.

In regards to a Facebook APP I am currently building, I changed some of the codes in the base.css file in Heroku, and when I use the commands:

git commit -am
git push heroku

The page still looks the same after reloading, getting the message "Everything up-to-date".

What am I missing/doing wrong?

Location of the file is: stylesheets/base.css

I also tried:

git push heroku stylesheets

but that didn't help

share|improve this question
could you post the output of git status? – Max Gherkins Jun 29 '12 at 18:24
@MaxGherkins I did a git status and am seeing nothing added to commit but untracked files present <use "git add" to track> – Fred Jun 29 '12 at 18:30
maybe try those: git add stylesheets/base.css, git commit -m 'stylesheet_or_whatever_message', git push origin master ... – Max Gherkins Jun 29 '12 at 18:35
@MaxGherkins I also did a git add base.css, then status, showed it had changed yet when I git push heroku did not change. Should I be using the command git push heroku stylesheets or git push heroku base.css ? – Fred Jun 29 '12 at 18:41
it's add, commit, push. If you've done the first two git status should tell you, that you're n commits ahead. I think if you cloned a heroku default app, the push syntax should be git push origin master – Max Gherkins Jun 29 '12 at 18:51
show 4 more comments

2 Answers

up vote 0 down vote accepted

I was having the same problem with Django on heroku. After following the standard git add, commit, push loop - the server's CSS was not updating. Everything, including static files, had been pushed to the server.

Restarting the heroku server worked though:

heroku restart

Give that a go!

share|improve this answer

I had this problem recently and in my case it was a case sensitivity issue. The page referred to the file as theFile.css but the file was actually thefile.css. On OS X with case insensitive file system it was working, but when put on Heroku is broke. Just in case this helps anyone.

share|improve this answer

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.