My problem is very simple.
I have project, this project includes as a submodule another project. This submodule has a .gitignore as follows:
*~
~*
.DS_Store
nbproject
core.ini.php
Yet, every time I create a new core.ini.php file (for local specification purposes), the file gets included in the watched file list, committing it into the repository. So despite the .gitignore of both the project AS WELL as the submodule specifying to ignore that file, it still gets added.
Here is just a screenshot to show that it is indeed added:
.gitignore addition http://i58.tinypic.com/1zmpn3m.png
I would appreciate any advise or help. Thank you.