I'm having a problem reseting my app to a previous commit. I'm trying out bootstrap for the first time and when I tried to modify bootstrap_and_overrides.css.less I broke something and the styling was all over the place.
I had no problem completely discarding the changes and had a commit on my local machine that was not pushed and where the code was working perfectly so I used
git reset --hard 0f0503e......
to reset my local repository. I got the message
HEAD is now at 'commit message'
but the styling is still broken. I then tried to go back one further. Again I got the message that the branch has been reset but my styling is all over the place. I'm now at a stage where I've reset to my last published commit and being very new to git/bootstrap and a beginner with ruby on rails - I'm really not sure how to fix this.
Have I broken something by reseting my repository? Or is this a bootstrap problem?