aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCoby Chapple <coby@github.com>2012-08-03 12:18:45 +1000
committerCoby Chapple <coby@github.com>2012-08-03 12:18:45 +1000
commit67083ce70d41bf4004c7a8326953bab8a94cc986 (patch)
tree63424dbed6936f1756845bec409e99f0ed29c853
parentf88aa40dbe96f298f554869b8598f16316af13f6 (diff)
downloadgitignore-67083ce70d41bf4004c7a8326953bab8a94cc986.tar.gz
gitignore-67083ce70d41bf4004c7a8326953bab8a94cc986.zip
Make CakePHP ignore config folder of either case
This takes the change from #339 and makes it case insensitive so that CakePHP projects from both before and after the rename ignore the appropriate files.
-rw-r--r--CakePHP.gitignore8
1 files changed, 4 insertions, 4 deletions
diff --git a/CakePHP.gitignore b/CakePHP.gitignore
index 9fbdf358..61d34467 100644
--- a/CakePHP.gitignore
+++ b/CakePHP.gitignore
@@ -1,7 +1,7 @@
tmp/*
-Config/core.php
-Config/database.php
+[Cc]onfig/core.php
+[Cc]onfig/database.php
app/tmp/*
-app/Config/core.php
-app/Config/database.php
+app/[Cc]onfig/core.php
+app/[Cc]onfig/database.php
!empty \ No newline at end of file