forked from ClassicPress/ClassicPress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
60 lines (54 loc) · 1.36 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
# gitignore file for ClassicPress Core
# Configuration files with possibly sensitive information
wp-config.php
wp-tests-config.php
.htaccess
# Files and folders related to build/test tools
.phpunit.result.cache
/phpunit.xml
/tests/qunit/compiled.html
/src/.wp-tests-version
/node_modules
/npm-debug.log
/vendor
/build
/tests/phpunit/build
/wp-cli.local.yml
/jsdoc
/packagehash.txt
/composer.lock
# Files and folders that get created in wp-content
/src/wp-content/blogs.dir
/src/wp-content/languages
/src/wp-content/mu-plugins
/src/wp-content/plugins
!/src/wp-content/plugins/index.php
!/src/wp-content/plugins/cp-pepper
/src/wp-content/themes/*
!/src/wp-content/themes/twentyseventeen
!/src/wp-content/themes/classicpress-twentyseventeen
!/src/wp-content/themes/the-classicpress-theme
/src/wp-content/upgrade
/src/wp-content/uploads
/src/wp-content/advanced-cache.php
/src/wp-content/blog-deleted.php
/src/wp-content/blog-inactive.php
/src/wp-content/blog-suspended.php
/src/wp-content/db.php
/src/wp-content/db-error.php
/src/wp-content/debug.log
/src/wp-content/install.php
/src/wp-content/maintenance.php
/src/wp-content/object-cache.php
/src/wp-content/pepper.php
/src/wp-content/sunrise.php
# Operating system specific files
.DS_Store
# Ignore other .gitignore files to allow for personal customizations
.gitignore
# Files related to applying patches
*.rej
*.orig
*.patch
*.diff
.svn