23/02/2013, 07:57
|
| | Fecha de Ingreso: mayo-2004
Mensajes: 398
Antigüedad: 20 años, 7 meses Puntos: 4 | |
Respuesta: Symfony Repositorio - gitignore
Código:
# Los lugares en tu proyecto donde guardes las uploads (si es que las tienes)
web/uploadsDocs
# Symfony2
app/bootstrap.php.cache
app/bootstrap_cache.php.cache
app/config/parameters.yml
app/cache/*
app/logs/*
vendor/*
web/bundles/*
build/
# Composer
composer.phar
# PHPUnit
app/phpunit.xml
# Editores
# vim
.*.sw[a-z]
*.un~
Session.vim
.netrwhist
# eclipse
*.pydevproject
.project
.metadata
bin/**
tmp/**
tmp/**/*
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath
.externalToolBuilders/
*.launch
.buildpath
# phpstorm
.idea/
# textmate
*.tmproj
*.tmproject
tmtags
# sublimetext
/*.sublime-project
*.sublime-workspace
# netbeans
nbproject/private/
build/
nbbuild/
dist/
nbdist/
nbactions.xml
nb-configuration.xml
# Sistemas Operativos
# Windows
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
# Linux
.*
!.gitignore
*~
# Mac OS X
.DS_Store
.AppleDouble
.LSOverride
Icon
._*
.Spotlight-V100
.Trashes
|