-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
executable file
·151 lines (127 loc) · 3.63 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
# -----------------------------------------------------------------
#
# By default all files are ignored. You'll need to whitelist
# any mu-plugins, plugins, or themes you want to include in the repo.
#
# To ignore uncommitted changes in a file that is already tracked, use
# git update-index --assume-unchanged
#
# To stop tracking a file that is currently tracked, use
# git rm --cached
# -----------------------------------------------------------------
# ignore everything in the root except the "wp-content" directory.
/*
!wp-content/
*config.codekit
# ignore everything in the "wp-content" directory, except:
# mu-plugins, plugins, and themes directories
wp-content/*
!wp-content/mu-plugins/
!wp-content/plugins/
!wp-content/themes/
# ignore all mu-plugins, plugins, and themes
# unless explicitly whitelisted at the end of this file
wp-content/mu-plugins/*
wp-content/plugins/*
wp-content/themes/*
# ignore all files starting with . or ~
.*
~*
# ignore node dependency directories (used by grunt)
node_modules/
# ignore OS generated files
ehthumbs.db
Thumbs.db
# ignore Editor files
*.sublime-project
*.sublime-workspace
*.komodoproject
# ignore log files and databases
*.log
*.sql
*.sqlite
# ignore compiled files
*.com
*.class
*.dll
*.exe
*.o
*.so
# ignore packaged files
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
# -------------------------
# BEGIN Whitelisted Files
# -------------------------
# track these files, if they exist
!.gitignore
!.editorconfig
!README.md
!CHANGELOG.md
!composer.json
!gitlab-checklists*
# track favicon files, if they exist
!android-chrome-*.png
!apple-touch-icon*.png
!browserconfig.xml
!favicon*.png
!favicon*.ico
!manifest.json
!mstile-*.png
!safari-pinned-tab.svg
# track acf options
!acf-options/
!example.gitignore
# track these mu-plugins, plugins, and themes
# add your own entries here
# !wp-content/plugins/adtrak-location-dynamics/
!wp-content/plugins/advanced-location-dynamics/
!wp-content/plugins/adtrak-core/
!wp-content/plugins/advanced-custom-fields-pro/
!wp-content/plugins/aryo-activity-log/
!wp-content/plugins/public-post-preview/
!wp-content/plugins/public-post-preview-configurator/
!wp-content/plugins/redirection/
!wp-content/plugins/wordpress-seo/
!wp-content/plugins/wp-migrate-db-pro/
!wp-content/plugins/wp-migrate-db-pro-media-files/
!wp-content/plugins/post-smtp/
!wp-content/plugins/post-to-google-my-business/
!wp-content/plugins/updraftplus/
!wp-content/plugins/wordfence/
!wp-content/plugins/wpscan/
!wp-content/plugins/html-forms/
!wp-content/plugins/woocommerce/
!wp-content/plugins/woocommerce-gateway-stripe/
!wp-content/plugins/enhanced-e-commerce-for-woocommerce-store/
!wp-content/plugins/woocommerce-pdf-invoices-packing-slips/
!wp-content/plugins/kadence-woocommerce-email-designer/
!wp-content/plugins/contact-form-7/
!wp-content/plugins/flamingo/
!wp-content/plugins/slickplan-importer/
!wp-content/plugins/wp-fastest-cache/
!wp-content/plugins/wp-nested-pages/
!wp-content/themes/adtrak-woocommerce/
!wp-content/themes/adtrak-tailwind-twig-timber/
!wp-content/themes/adtrak-tailwind-twig-timber-gutenberg/
!wp-content/themes/adtrak-parent/
# Ignore node_modules and vendor files
wp-content/themes/adtrak-tailwind-twig-timber/node_modules
wp-content/themes/adtrak-tailwind-twig-timber/vendor
wp-content/themes/adtrak-tailwind-twig-timber-gutenberg/node_modules
wp-content/themes/adtrak-tailwind-twig-timber-gutenberg/vendor
wp-content/themes/adtrak-woocommerce/node_modules
wp-content/themes/adtrak-woocommerce/vendor
# Ignore dist folder
wp-content/themes/adtrak-tailwind-twig-timber/dist
wp-content/themes/adtrak-tailwind-twig-timber-gutenberg/dist
*.codekit
*.DS_store
prepros-6.config
config.codekit3