Heroku not updating css for rails app

后端 未结 5 2042
春和景丽
春和景丽 2021-02-04 08:14

I\'m having trouble updating my rails app on heroku. I\'ve gotten my app up but I tried to change my application.css file in /public/stylesheets/ but whenever I try to push to

5条回答
  •  囚心锁ツ
    2021-02-04 09:02

    Remember that you have to commit the changes locally before you can push them.

    If you do a git status, it should be clean.

    If it's not (my prediction):

    git commit -am "Your commit message"
    git push heroku master
    

提交回复
热议问题