-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
82 lines (82 loc) · 1.43 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
########################
# TYPO3 CMS
# global ignore file
########################
#
# Don't ignore .rej and .orig as we want to see/clean files after conflict resolution.
#
# For local exclude patterns please edit .git/info/exclude.
#
########################
#
# Ignore temporary files (left by editors and OS)
*~
*.bak
*.swp
.DS_Store
#
# Ignore by common IDEs used directories/files
nbproject
*.idea
*.project
.buildpath
.settings
.TemporaryItems
.webprj
#
# Temporary files and folders
.cache
.commit
.php_cs.cache
.sass-cache
.session
cghooks.lock
phantomjsdriver.log
#
# CSS map files
*.css.map
#
# Ignore build stuff
/Build/bower_components/*
/Build/node_modules/*
/Build/JavaScript
/Build/typings/*
!/Build/typings/no-def*
#
# TypeScript stuff
.baseDir.ts
.tscache
#
########################
#
# Project related
#
########################
#
# Ignore composer generated/ downloaded files
/bin/
/vendor/
#
# Ignore local configuration and cache files
/.env
/var/
#
# Ignore build stuff from "site package"
/packages/site_package/**/node_modules/*
#
# Ignore everything in the webroot except typo3conf/ (and other project relevant stuff)
/public/*
!/public/typo3conf/
!/public/.ht*
#
# Ignore everything in the typo3conf/ directory, except the configuration files
/public/typo3conf/*
!/public/typo3conf/AdditionalConfiguration.php
!/public/typo3conf/LocalConfiguration.php
#
########################
#
# Global excludes
#
########################
!**/.gitkeep