I am getting frustrated with all my PHP error_log files causing merge conflicts with my production & dev servers with git. The solution is easy enough--adding all files that are called "error_log" to .gitignore--but I don't know how to do it. This is what I'm trying in my .gitignore:
error_log
Which is only excluding the error_log file in the root directory (instead of all the other dirs I have PHP running).
Would *error_log work?
Thanks!
Your .gitignore
is absolutely correct, but .gitignore
will only stop files from being added to the repository – already tracked files are not concerned by this. So, first you need to remove all the error_log
files from the index by running:
git rm --cached '*/error_log' error_log
Now when you run git status
some of your error_log files should be listed as “deleted”, but none of them should appear as untracked files.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With