What am I missing that needs to be done in order to get git
to ignore my .idea/
path?
ctote@ubuntu:~/dev/1$ git status
On branch master
To Solve Error "fatal: pathspec '.idea' did not match any files" after entering above command,
git status
. It will list all the files as usual. Check the path of idea folder files. Mine was at ../.idea/workspace.xml
. Notice the ../.idea
git rm --cached -r ../.idea
rm '.idea/workspace.xml'
and the files will be removed.