forked from webcomm/magento-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
328 lines (277 loc) · 6.97 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
# ==================================== #
# Magento Boilerplate .gitignore file. #
# #
# Copyright (c) 2012 Webcomm Pty Ltd #
# #
# This file is tested on: #
# - Magento CE 1.6.2.0 #
# - Magento CE 1.7.0.0 #
# - Magento CE 1.7.0.1 #
# - Magento CE 1.7.0.2 #
# #
# ==================================== #
# =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* #
# Part A: Ignore all files that #
# probably shouldn't be in #
# version control #
# =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* #
#
# You shouldn't need to edit these
# files at all unless a Magento
# upgrade breaks this. These files are
# in alphabetical order.
# Numerous always-ignore extensions
*.diff
*.err
*.orig
*.log
*.rej
*.swo
*.swp
*.vi
*~
*.sass-cache
*.iml
# OS or Editor folders
.DS_Store
Thumbs.db
.cache
.project
.settings
.tmproj
*.esproj
nbproject
# Dreamweaver added files
_notes
dwsync.xml
# Komodo
*.komodoproject
.komodotools
# Folders to ignore
.hg
.svn
.CVS
intermediate
publish
.idea
# Composer
!/composer.json
!/composer.lock
/vendor
# =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* #
# Part B: Ignore all standard Magento #
# files. #
# =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* #
#
# You shouldn't need to edit these
# files at all unless a Magento
# upgrade breaks this. These files are
# in alphabetical order. The ignores
# are setup so that in Part C onwards
# you usem minimal code to setup
# your ignores.
# .htaccess files
/.htaccess.sample
# API
/api.php
# App
/app/*
# App code
!/app/code
/app/code/*
!/app/code/community
/app/code/community/*/*
!/app/code/local
# App design
!/app/design
/app/design/*
!/app/design/adminhtml
/app/design/adminhtml/*
!/app/design/adminhtml/base
/app/design/adminhtml/base/*
!/app/design/adminhtml/base/default
/app/design/adminhtml/base/default/*
!/app/design/adminhtml/base/default/layout
/app/design/adminhtml/base/default/layout/*
!/app/design/adminhtml/base/default/layout/webcomm_*
!/app/design/adminhtml/base/default/template
/app/design/adminhtml/base/default/template/*
!/app/design/adminhtml/base/default/template/webcomm
!/app/design/adminhtml/default
/app/design/adminhtml/default/*
!/app/design/adminhtml/default/default
/app/design/adminhtml/default/default/*
!/app/design/adminhtml/default/default/layout
/app/design/adminhtml/default/default/layout/*
!/app/design/adminhtml/default/default/layout/webcomm_*
!/app/design/adminhtml/default/default/template
/app/design/adminhtml/default/default/template/*
!/app/design/adminhtml/default/default/template/webcomm
!/app/design/frontend
/app/design/frontend/*
!/app/design/frontend/base
/app/design/frontend/base/*
!/app/design/frontend/base/default
/app/design/frontend/base/default/*
!/app/design/frontend/base/default/layout
/app/design/frontend/base/default/layout/*
!/app/design/frontend/base/default/layout/webcomm_*
!/app/design/frontend/base/default/template
/app/design/frontend/base/default/template/*
!/app/design/frontend/base/default/template/webcomm
# App modules
!/app/etc
/app/etc/*
!/app/etc/modules
/app/etc/modules/*
!/app/etc/modules/Webcomm_*
# App locale
!/app/locale
/app/locale/*
!/app/locale/en_AU
!/app/locale/en_US
/app/locale/en_US/*
!/app/locale/en_US/template
/app/locale/en_US/template/*
!/app/locale/en_US/template/email
/app/locale/en_US/template/email/*
# Cron files
/cron.php
/cron.sh
# Downloader
/downloader
# Errors
/errors/.htaccess
/errors/404.php
/errors/503.php
/errors/default
/errors/design.xml
/errors/local.xml.sample
/errors/processor.php
/errors/report.php
# Misc files
/favicon.ico
/get.php
/includes
# Index and installer files
/index.php.sample
/install.php
# Global javascript
/js/*
# PHP libraries
/lib/*
!/lib/Varien
/lib/Varien/*
!/lib/Varien/Data
/lib/Varien/Data/*
!/lib/Varien/Data/Form
/lib/Varien/Data/Form/*
!/lib/Varien/Data/Form/Element
/lib/Varien/Data/Form/Element/*
# Licences
/LICENSE_AFL.txt
/LICENSE.html
/LICENSE.txt
# "Mage" shell script
/mage
# Media
/media/*
# Misc files
/package.xml
/php.ini.sample
/pkginfo/*
/RELEASE_NOTES.txt
/shell
# Skin
!/skin
/skin/*
# Skin adminhtml
!/skin/adminhtml
/skin/adminhtml/*
!/skin/adminhtml/base
/skin/adminhtml/base/*
!/skin/adminhtml/base/default
/skin/adminhtml/base/default/*
!/skin/adminhtml/base/default/css
/skin/adminhtml/base/default/css/*
!/skin/adminhtml/base/default/images
/skin/adminhtml/base/default/images/*
!/skin/adminhtml/base/default/js
/skin/adminhtml/base/default/js/*
!/skin/adminhtml/base/default/lib
/skin/adminhtml/base/default/lib/*
!/skin/adminhtml/base/default/webcomm
!/skin/adminhtml/default
/skin/adminhtml/default/*
!/skin/adminhtml/default/default
/skin/adminhtml/default/default/*
!/skin/adminhtml/default/default/css
/skin/adminhtml/default/default/css/*
!/skin/adminhtml/default/default/images
/skin/adminhtml/default/default/images/*
!/skin/adminhtml/default/default/js
/skin/adminhtml/default/default/js/*
!/skin/adminhtml/default/default/lib
/skin/adminhtml/default/default/lib/*
# Skin frontend
!/skin/frontend
/skin/frontend/*
!/skin/frontend/base
/skin/frontend/base/*
!/skin/frontend/base/default
/skin/frontend/base/default/*
!/skin/frontend/base/default/css
/skin/frontend/base/default/css/*
!/skin/frontend/base/default/fonts
/skin/frontend/base/default/fonts/*
!/skin/frontend/base/default/images
/skin/frontend/base/default/images/*
!/skin/frontend/base/default/js
/skin/frontend/base/default/js/*
!/skin/frontend/base/default/lib
/skin/frontend/base/default/lib/*
!/skin/frontend/base/default/webcomm
!/skin/frontend/default
/skin/frontend/default/*
!/skin/frontend/default/default
/skin/frontend/default/default/*
!/skin/frontend/default/default/css
/skin/frontend/default/default/css/*
!/skin/frontend/default/default/fonts
/skin/frontend/default/default/fonts/*
!/skin/frontend/default/default/images
/skin/frontend/default/default/images/*
!/skin/frontend/default/default/js
/skin/frontend/default/default/js/*
!/skin/frontend/default/default/lib
/skin/frontend/default/default/lib/*
!/skin/frontend/default/default/lib/webcomm
# Var folder
/var
# ==================================== #
# Part C: Reference all extensions #
# that are required by this #
# theme that should be under #
# version control. #
# ==================================== #
#
# You need to include all files for
# extension. Each extension's files
# should be kept together so it is
# easy to find them in future if need
# be.
# ==================================== #
# Part D: Setup your theme overrides #
# ==================================== #
#
# This is where you include your theme
# overrides in app/design/frontend and
# skin/frontend
# Boilerplate Theme
!/app/design/frontend/boilerplate
!/skin/frontend/boilerplate
# If you want to be very clever, you
# will duplicate 'mytheme', as it
# inherits all styling from 'boilerplate'
# and makes upgrading easier!
!/skin/frontend/mytheme