This question has already been answered:
- Files in .gitignore 3 answers are not ignored
I compiled a .gitignore file and put it in the root of the project. In the file there is an indication that you need to ignore the .idea/workspace.xml files.
#Intellij* .iml
.idea / workspace.xml
.idea / libraries
But anyway, when I write git status I get
Changes not staged for commit: (use "git add <file>..." to update what will be committed) (use "git checkout -- <file>..." to discard changes in working directory) modified: .idea/workspace.xml What am I doing wrong?
/.idea/workspace.xml? - lexxl