Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding all "error_log" files to .gitignore

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!

like image 793
Brian Mayer Avatar asked Jan 30 '13 21:01

Brian Mayer


1 Answers

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.

like image 188
Chronial Avatar answered Oct 15 '22 03:10

Chronial