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
Each time you make changes on your CSS you need to run the following commands on the terminal:
$bundle exec rake assets:precompile $git add . $git commit -m "msg" $git push heroku master