git ignore all cache files code example
Example 1: git ignore still tracking
git rm --cached <file>
git rm -r --cached <folder>
Example 2: git ignore not saving changes
git rm -rf --cached .
git add .
git rm --cached <file>
git rm -r --cached <folder>
git rm -rf --cached .
git add .