Created
February 26, 2012 22:12
-
-
Save MacDada/1919306 to your computer and use it in GitHub Desktop.
My Symfony2 projects .gitignore file
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
#### OSX etc #### | |
.DS_Store* | |
Icon? | |
Thumbs.db | |
ehthumbs.db | |
*.swp | |
*.out | |
/nbproject/ | |
*.lock | |
*~ | |
#### Symfony #### | |
/web/bundles/ # pliki kopiowane automatycznie z bundles | |
/web/uploads/* # pliki uploadowane | |
/app/bootstrap* # cache klas | |
/app/cache/* # cache aplikacji | |
/app/logs/* # logi aplikacji | |
/vendor/* # zewnętrzne biblioteki | |
/app/config/parameters.ini # konfiguracja nie powinna znaleźć się w repo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment