Here's the situation. I have a commercial application developed in PHP. I'll have to add features to it, but none of the original files will be touched. I need to work ONLY on my new files. How do I manage this situation in Git?
In my gitignore I specified * to ignore everything and a negation ! for my new files, but it's really boring. I don't want to add a new line to gitignore everytime I create a new file.
Any solution?
PS: this script don't support plugins so is not a solution to just "git init" my plugin folder. Anyway It's developed using MVC so I'll be adding controllers and views.