-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
128 lines (108 loc) · 2.69 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
# Production environment files
php_errorlog
private.key
public.key
.well-known
/webstats/
## Explicitly ignore configuration that we do not want to version
config/smtp.settings.yml
config/phpmailer_smtp.settings.yml
# Ignore test data
/corpus_data
/repository_data
/2019_data
/private
# "Built" components
# Generally you should only ignore the root vendor directory. It's important
# that core/assets/vendor and any other vendor directories within contrib or
# custom module, theme, etc., are not ignored unless you purposely do so.
/vendor/
config/.htaccess
/.drush-lock-update
/drush/drush.yml
/public_html/.csslintrc
/public_html/.editorconfig
/public_html/.eslintignore
/public_html/.eslintrc.json
/public_html/.gitattributes
/public_html/.gitignore
/public_html/.ht.router.php
/public_html/INSTALL.txt
/public_html/README.txt
/public_html/autoload.php
/public_html/example.gitignore
/public_html/index.php
/public_html/robots.txt
/public_html/update.php
/public_html/web.config
/public_html/core
/public_html/libraries
/public_html/modules/contrib
/public_html/modules/custom
/public_html/modules/README.txt
/public_html/profiles/README.txt
/public_html/themes/contrib
/public_html/themes/custom
/public_html/sites/README.txt
/public_html/sites/default/default.services.yml
/public_html/sites/default/default.settings.php
/public_html/sites/default/config/.htaccess
/public_html/sites/default/config/README
/public_html/sites/development.services.yml
/public_html/sites/example.settings.local.php
/public_html/sites/example.sites.php
/public_html/themes/README.txt
# Ignore sensitive information
/public_html/sites/*/settings.local.php
# Ignore Drupal's file directory
/public_html/sites/*/files/
# Note that services.local.yml is not loaded by default. If you would like
# to use this file add the following to your settings.local.php file:
# $settings['container_yamls'][] = __DIR__ . '/services.local.yml';
/public_html/sites/*/services.local.yml
# ** Only works in OSs that support newer versions of fnmatch (Bash 4+)
/sites/default/**/files
/sites/default/**/private
# Ignore SimpleTest multi-site environment.
/public_html/sites/simpletest
# Other common rules
# ------------------
# Local Build Scripts #
#######################
p.sh
bup.sh
dcc.sh
# .ddev Drush Commands #
########################
web/sites/all/drush
# Packages #
############
*.7z
*.dmg
*.gz
*.bz2
*.iso
*.jar
*.rar
*.tar
*.zip
*.tgz
*.csv
# Logs and databases #
######################
*.log
*.sql
# OS generated files #
######################
.DS_Store*
ehthumbs.db
Thumbs.db
._*
# Vim generated files #
######################
*.un~
# SASS #
##########
.sass-cache
# Things in the core directory that Drupal 8 commits in the repository.
!core/**/*.gz