SyntaxFix
Write A Post
Hire A Developer
Questions
To remove .idea/ completely from the git without affecting your IDE config you could just do:
.idea/
git rm -r --cached '.idea/' echo .idea >> .gitignore git commit -am "removed .idea/ directory"