Commit 433dd9a6047c8f00132ea372788022e20a9a595a
1 parent
c0e66422
Exists in
master
and in
1 other branch
dossier tmp fait partie du projet, avec sous-dossiers vides
Showing
6 changed files
with
82 additions
and
8 deletions
Show diff stats
.gitignore
1 | 1 | # see gitignore syntax: https://git-scm.com/docs/gitignore |
2 | 2 | |
3 | -/.metadata/ | |
4 | -/vendor/ | |
5 | -/vendor*/ | |
3 | +#newfolderempty/* | |
4 | + | |
5 | +# ############################### | |
6 | +# ELEMENTS FOURNIS AVEC L'INSTALLATION D'UNE APP CAKEPHP : | |
7 | +# ############################### | |
8 | + | |
9 | +# CakePHP specific files # | |
10 | +########################## | |
6 | 11 | /config/app.php |
12 | +/config/.env | |
13 | +/logs/* | |
7 | 14 | /tmp/* |
8 | -/logs/*.log* | |
9 | -/.settings/ | |
15 | +/vendor/* | |
10 | 16 | |
17 | +# OS generated files # | |
18 | +###################### | |
11 | 19 | .DS_Store |
20 | +.DS_Store? | |
21 | +._* | |
22 | +.Spotlight-V100 | |
23 | +.Trashes | |
24 | +Icon? | |
25 | +ehthumbs.db | |
26 | +Thumbs.db | |
27 | + | |
28 | +# Tool specific files # | |
29 | +####################### | |
30 | +# vim | |
31 | +*~ | |
32 | +*.swp | |
33 | +*.swo | |
34 | +# sublime text & textmate | |
35 | +*.sublime-* | |
36 | +*.stTheme.cache | |
37 | +*.tmlanguage.cache | |
38 | +*.tmPreferences.cache | |
39 | +# Eclipse | |
40 | +.settings/* | |
41 | +# JetBrains, aka PHPStorm, IntelliJ IDEA | |
42 | +.idea/* | |
43 | +# NetBeans | |
44 | +nbproject/* | |
45 | +# Visual Studio Code | |
46 | +.vscode | |
47 | +# Sass preprocessor | |
48 | +.sass-cache/ | |
49 | + | |
50 | + | |
51 | + | |
52 | + | |
53 | +# ############################### | |
54 | +# ELEMENTS AJOUTES POUR LABINVENT | |
55 | +# ############################### | |
56 | + | |
57 | + | |
58 | +/.metadata/ | |
59 | +#/vendor/ | |
60 | +#/vendor*/ | |
61 | +#/logs/*.log* | |
62 | +/.settings/ | |
63 | + | |
64 | +#.DS_Store | |
12 | 65 | # meme chose que |
13 | 66 | #**/.DS_Store |
14 | 67 | |
68 | +# Fichiers lies a Composer | |
15 | 69 | # On ne versionne QUE composer.json |
16 | 70 | composer.json.* |
17 | 71 | # On ne versionne NI composer.lock NI aucune copie de ce fichier |
... | ... | @@ -20,12 +74,32 @@ composer.lock |
20 | 74 | composer.lock* |
21 | 75 | *.ORIG |
22 | 76 | #old/ |
23 | -webroot.* | |
24 | -webroot/test | |
25 | 77 | |
26 | -# links inside webroot/ | |
78 | +# webroot/ | |
79 | +# - liens (ou dossiers) auto-installed par cakephp avec "bin/cake plugin assets symlink" | |
27 | 80 | webroot/debug_kit |
28 | 81 | webroot/dompdf |
29 | 82 | webroot/bootstrap_u_i |
83 | +# - Autres sous-dossiers a ignorer | |
84 | +#webroot.* | |
85 | +webroot/test | |
30 | 86 | |
87 | +# Autres dossiers | |
31 | 88 | MODIFS_DE_VENDOR/* |
89 | + | |
90 | + | |
91 | +# Ne pas ignorer les fichier "empty" | |
92 | +# Permet de transferer des dossiers vides tels que tmp, logs, vendor... | |
93 | +!/tmp/sessions | |
94 | +/tmp/sessions/* | |
95 | +!/tmp/tests | |
96 | +/tmp/tests/* | |
97 | +!/tmp/cache | |
98 | +/tmp/cache/* | |
99 | +!/tmp/cache/models | |
100 | +/tmp/cache/models/* | |
101 | +!/tmp/cache/persistent | |
102 | +/tmp/cache/persistent/* | |
103 | +!/tmp/cache/views | |
104 | +/tmp/cache/views/* | |
105 | +!empty | ... | ... |