-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitignore
91 lines (64 loc) · 2.05 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
# Because OSX
.DS_Store
# Ignore files added by npm
node_modules
# Ignore composer files
# vendor WordPress has a vendor file in the js/distr directory
composer.lock
# Ignore the log directory.
log/
# Ignore Sublime project files.
*.sublime*
# Ignore Vagrant instance files.
.vagrant
# Ignore PHPStorm project files.
/.idea
# Ignore VS Code project files.
/.vscode
# Ignore the local WP-CLI config.
wp-cli.local.yml
# Ignore old build directories for plugins and themes.
/build-plugins/*
/build-themes/*
# Ignore any custom hosts definitions.
/*-wsuwp-hosts
!/default-wsuwp-hosts
# Ignore files generated during provisioning
provision/vvv-nginx.conf
# The wp-config.php file is automatically generated
/www/wp-config.php
# Munin creates a couple directories when installed.
/www/cgi-bin
/www/html
# Ignore any production SQL that we've imported locally.
www/*.sql
www/*.sql.bak
# We don't need to track default plugins and themes here.
/www/wordpress/wp-content/plugins
/www/wordpress/wp-content/themes
# The Query Monitor plugin adds a db.php drop in that we should ignore.
/www/wp-content/db.php
# Ignore any local filters
/www/wp-content/mu-plugins/local-index.php
# Ignore the local mail log.
/www/wp-content/mu-plugins/wp-mail-log.txt
# Ignore all plugins in the wp-content directory by default. We'll explicitly allow those we track here.
/www/wp-content/plugins/*/
/www/wp-content/mu-plugins/*/***
# Ignore the rsync exclude files in the plugin directory.
/www/wp-content/plugins/exclude*.txt
/www/wp-content/mu-plugins/mu-exclude*.txt
# Ignore all uploads in the wp-content directory by default.
/www/wp-content/uploads
# Ignore all upgrade files in wp-content
/www/wp-content/upgrade
# Ignore all themes in the wp-content directory by default. We'll explicitly allow those we track here.
/www/wp-content/themes/*/
# Ignore optional webgrind directory for local development.
/www/webgrind
# Ignore WSU Spine when in www for local development.
/www/wsu-spine
# Ignore the local WP-CLI.
/www/wp-cli
# Ignore local development of WP-CLI packages.
/www/wp-cli-packages