If you want to delete already made sass-cache files from your repo - and are on Linux. You can run the find command in the terminal, from the root of your repo file:
$_ `find . -name "*.scssc" -exec git rm -f {} \;`
After that, do:
$_ git commit -m "Remove .scssc cache files."
Then add these lines to .gitignore with $_ nano .gitignore :
styles/.sass-cache/* styles/.sass-cache .sass-cache/ *.css.map
edlee source share