diff --git a/.gitignore b/.gitignore index ac28c08..aa1c892 100644 --- a/.gitignore +++ b/.gitignore @@ -1,17 +1,71 @@ # see gitignore syntax: https://git-scm.com/docs/gitignore -/.metadata/ -/vendor/ -/vendor*/ +#newfolderempty/* + +# ############################### +# ELEMENTS FOURNIS AVEC L'INSTALLATION D'UNE APP CAKEPHP : +# ############################### + +# CakePHP specific files # +########################## /config/app.php +/config/.env +/logs/* /tmp/* -/logs/*.log* -/.settings/ +/vendor/* +# OS generated files # +###################### .DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +Icon? +ehthumbs.db +Thumbs.db + +# Tool specific files # +####################### +# vim +*~ +*.swp +*.swo +# sublime text & textmate +*.sublime-* +*.stTheme.cache +*.tmlanguage.cache +*.tmPreferences.cache +# Eclipse +.settings/* +# JetBrains, aka PHPStorm, IntelliJ IDEA +.idea/* +# NetBeans +nbproject/* +# Visual Studio Code +.vscode +# Sass preprocessor +.sass-cache/ + + + + +# ############################### +# ELEMENTS AJOUTES POUR LABINVENT +# ############################### + + +/.metadata/ +#/vendor/ +#/vendor*/ +#/logs/*.log* +/.settings/ + +#.DS_Store # meme chose que #**/.DS_Store +# Fichiers lies a Composer # On ne versionne QUE composer.json composer.json.* # On ne versionne NI composer.lock NI aucune copie de ce fichier @@ -20,12 +74,32 @@ composer.lock composer.lock* *.ORIG #old/ -webroot.* -webroot/test -# links inside webroot/ +# webroot/ +# - liens (ou dossiers) auto-installed par cakephp avec "bin/cake plugin assets symlink" webroot/debug_kit webroot/dompdf webroot/bootstrap_u_i +# - Autres sous-dossiers a ignorer +#webroot.* +webroot/test +# Autres dossiers MODIFS_DE_VENDOR/* + + +# Ne pas ignorer les fichier "empty" +# Permet de transferer des dossiers vides tels que tmp, logs, vendor... +!/tmp/sessions +/tmp/sessions/* +!/tmp/tests +/tmp/tests/* +!/tmp/cache +/tmp/cache/* +!/tmp/cache/models +/tmp/cache/models/* +!/tmp/cache/persistent +/tmp/cache/persistent/* +!/tmp/cache/views +/tmp/cache/views/* +!empty diff --git a/tmp/cache/models/empty b/tmp/cache/models/empty new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/tmp/cache/models/empty diff --git a/tmp/cache/persistent/empty b/tmp/cache/persistent/empty new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/tmp/cache/persistent/empty diff --git a/tmp/cache/views/empty b/tmp/cache/views/empty new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/tmp/cache/views/empty diff --git a/tmp/sessions/empty b/tmp/sessions/empty new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/tmp/sessions/empty diff --git a/tmp/tests/empty b/tmp/tests/empty new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/tmp/tests/empty -- libgit2 0.21.2