Created
February 14, 2013 22:19
-
-
Save Linnk/4956932 to your computer and use it in GitHub Desktop.
My .gitignore for CakePHP projects.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# OS X & Windows | |
.DS_Store | |
Thumbs.db | |
# App content files (normally uploaded by users) | |
/app/webroot/files/* | |
!/app/webroot/files/ | |
!/app/webroot/files/empty | |
# CakePHP database.php | |
/app/Config/database.php | |
# CakePHP tmp | |
/app/tmp/* | |
!/app/tmp/ | |
/app/tmp/cache/* | |
!/app/tmp/cache/ | |
!/app/tmp/cache/empty | |
/app/tmp/cache/models/* | |
!/app/tmp/cache/models/ | |
!/app/tmp/cache/models/empty | |
/app/tmp/cache/persistent/* | |
!/app/tmp/cache/persistent/ | |
!/app/tmp/cache/persistent/empty | |
/app/tmp/cache/views/* | |
!/app/tmp/cache/views/ | |
!/app/tmp/cache/views/empty | |
/app/tmp/logs/* | |
!/app/tmp/logs/ | |
!/app/tmp/logs/empty | |
/app/tmp/sessions/* | |
!/app/tmp/sessions/ | |
!/app/tmp/sessions/empty | |
/app/tmp/tests/* | |
!/app/tmp/tests/ | |
!/app/tmp/tests/empty |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment