forked from Vincit/wordpress-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
58 lines (49 loc) · 1.45 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
# WordPress core is installed by Composer
htdocs/wordpress
htdocs/.htaccess
# WP-CLI database dumps that should not be tracked in git
db-sync
sql-dump-*.sql
# Custon environment variables may include passwords and other
# secrets and should not be tracked in git
.env
.env.*
!.env.example
# WordPress content directories usually populated by composer
# If you create custom plugins, force add it to git so that it's tracked
# If you create custom themese, they are automatically tracked in git
htdocs/wp-content/plugins/*
!htdocs/wp-content/plugins/.gitkeep
htdocs/wp-content/mu-plugins/*
!htdocs/wp-content/mu-plugins/.gitkeep
!htdocs/wp-content/mu-plugins/register-theme-directory.php
!htdocs/wp-content/mu-plugins/bedrock-autoloader.php
htdocs/wp-content/themes/twenty*
htdocs/wp-content/themes/wordpress-theme-base
!htdocs/wp-content/themes/.gitkeep
htdocs/wp-content/languages/*
!htdocs/wp-content/languages/.gitkeep
# WordPress content directories filled with user data
# not to be tracked in git
htdocs/wp-content/upgrade
htdocs/wp-content/uploads/*
!htdocs/wp-content/uploads/.gitkeep
# Server data, not part of project
htdocs/.well-known
# Libraries installed by Composer, Bower etc
vendor/*
!vendor/.gitkeep
# Node Package Manager
node_modules
# Vagrant run-time output, not need to track in git
bin
.vagrant
mkmf.log
myrecording
# OSX Desktop Services Store files.
.DS_Store
/.vincit.d
/customizations
/install.sh
/vagrant-up-customizer.sh
!/customizations/bin