I have a following case:
I made a .gitignore
on gitignore.io
. The .idea
folder and project_name.iml
were not in the ignore list and were pushed into the repo. I added them into the .gitignore
, but they remain in the repo. If I make any changes to them, they appear in the list of changed files to commit.
There is a way to get rid of them through the terminal
git rm -r --cached .idea/
But is it possible to start ignoring changes in those files and remove them from the repo by the IDE without using terminal?