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
git statusand am seeingnothing added to commit but untracked files present <use "git add" to track>– Fred Jun 29 '12 at 18:30git add stylesheets/base.css,git commit -m 'stylesheet_or_whatever_message',git push origin master... – Max Gherkins Jun 29 '12 at 18:35git add base.css, then status, showed it had changed yet when Igit push herokudid not change. Should I be using the commandgit push heroku stylesheetsorgit push heroku base.css? – Fred Jun 29 '12 at 18:41git push origin master– Max Gherkins Jun 29 '12 at 18:51