I've got a framework in my /project
directory, where I have multiple .sass-cache
folders.
For example, I could have this
/project/-/-/one/.sass-cache
And this
/project/-/-/two/.sass-cache
And this
/project/three/.sass-cache
And I want to add all of the to .gitignore. I've tried this:
# Sass #
###########
*.sass-cache*
But it fails and git still picks up changes in them. How do I properly add my .sass-cache
folders to my .gitignore
file?