I need your help: I'm currently working on a web project with another person. I'm using NetBeans to develop the code, while he's using Dreamweaver. We would like to ignore all Dreamweaver _notes directories (these directories contain files produced by Dreamweaver itself). We don't know the exact path of these directories. We can find them at /a/b/c/_notes/f
or maybe at /_notes/a/b/c
or in tens other places. We tried to add
/_notes/
/nbproject
configs/
and
/_notes
/nbproject
configs/
and also
*_notes*
/nbproject
configs/
to the .gitignore file, but the _notes directories are still tracked. Any suggestions? Thank you in advance!
git rm -r --cached _notes
– Quizmaster