My issue is that there are a lot of changes which I did in the app/assets folder so in my development environment I easily undid the old ones with this command.
rake assets:clobber
and then recompiled with this one.
rake assets:precompile --trace
It all works well on my local. Now the issue is that few changes have messed up on heroku. Although heroku precompiles assets while pushing the code on it, I want to precompile the assets manually. When going through the generated application.css it has specified values four times rather than once. First and third time the value is right but the second and fourth is wrong so it is picking up that wrong one I guess. So I want to fix it up by cleaning the assets and precompiling it afresh. Thanx for the help.