How to force Git remove files that was tracked but is now in .gitignore November 2, 2016 git rm -r --cached . git add . git commit -am "Remove ignored files" References http://stackoverflow.com/questions/1274057/how-to-make-git-forget-about-a-file-that-was-tracked-but-is-now-in-gitignore Related