I have a problem with my .gitignore
here there my .gitignore content:
application/configs/application.ini
cache/
uploads/
thumbs/
docs/
.htaccess
*.swp
*~
nbproject/
it works for all of them except application/configs/application.ini
I can’t understand why
Can you please help me
Thanks 🙂
application/configs/application.ini is probably already tracked.
You need to remove it from your repo in order to be ignored in the future:
git rm --cached application/configs/application.ini.