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!