Using msysgit on windows: git version 1.8.5.2.msysgit.0
I have a folder tree with hundreds of small projects like this:
Root
|--Project1
|--xx/xx/xx/xx/obj
|--Project2
|--yy/yy/yy/yy/obj
|--Project3
|--zz/zz/zz/zz/obj
I have the entry obj/ in my .gitignore file
One single obj folder is not being ignored and always appears in the untracked files list. I have tried commands such as:
git rm -r --cached Project3\zz\zz\zz\zz\obj
but it just says pathspec did not match any files - of course it would as the files are not tracked in my git repository.. they're just in the local folder.
How can I ignore this folder?