Created
November 2, 2012 19:06
-
-
Save isidromerayo/4003674 to your computer and use it in GitHub Desktop.
my personal gitignore (PHP and IDEs)
This file contains hidden or 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
# https://github.com/github/gitignore | |
# build - files generate with tools for static PHP code analyses | |
build | |
## generic files to ignore | |
*~ | |
*.lock | |
*.DS_Store | |
*.swp | |
*.out | |
## | |
# composer | |
## | |
composer.phar | |
#composer.lock | |
## | |
# components, libraries, etc | |
## | |
vendor | |
## | |
# Symfon2 - https://github.com/github/gitignore/blob/master/Symfony2.gitignore | |
## | |
# Bootstrap | |
app/bootstrap* | |
# Symfony directories | |
vendor/* | |
*/logs/* | |
*/cache/* | |
web/uploads/* | |
web/bundles/* | |
# Configuration files | |
app/config/parameters.ini | |
app/config/parameters.yml | |
## | |
# Netbeans | |
## | |
nbproject | |
## | |
# Eclipse - https://github.com/github/gitignore/blob/master/Global/Eclipse.gitignore | |
## | |
*.pydevproject | |
.project | |
.metadata | |
bin/** | |
tmp/** | |
tmp/**/* | |
*.tmp | |
*.bak | |
*.swp | |
*~.nib | |
local.properties | |
.classpath | |
.settings/ | |
.loadpath | |
# External tool builders | |
.externalToolBuilders/ | |
# Locally stored "Eclipse launch configurations" | |
*.launch | |
# CDT-specific | |
.cproject | |
# PDT-specific | |
.buildpath |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment