What am I missing that needs to be done in order to get git to ignore my .idea/ path?
git
.idea/
ctote@ubuntu:~/dev/1$ git status On branch master
git rm --cached .idea/
echo '.idea' >> .gitignore
git add .gitignore git commit -m "Removed .idea files"