When .gitignore ignoring your changes
Case / Problem
You want to ignore and remove already commited / pushed files, but git keep ignoring your changes on .gitignore
Solution
First, you must delete the index on the specified files from your git. Then add and commit the changes.
git rm ...
dr.codes1 min read