diff --git .gitignore .gitignore
index dad73b5..864eb0f 100644
|
|
|
1 | | lib-cov |
2 | | *.seed |
3 | | *.log |
4 | | *.csv |
5 | | *.dat |
6 | | *.out |
7 | | *.pid |
8 | | *.gz |
9 | | |
10 | | pids |
11 | | logs |
12 | | results |
| 1 | # gitignore file for WordPress Core. |
13 | 2 | |
| 3 | # Configuration files with possibly sensitive information. |
14 | 4 | wp-config.php |
15 | 5 | wp-tests-config.php |
16 | | phpunit.xml |
17 | | tests/phpunit/data/plugins/wordpress-importer |
18 | | tests/phpunit/data/.trac-ticket-cache* |
19 | | tests/qunit/compiled.html |
| 6 | .htaccess |
20 | 7 | |
21 | | node_modules |
22 | | npm-debug.log |
| 8 | # Files and folders related to Build/Test Tools. |
| 9 | /phpunit.xml |
| 10 | /tests/phpunit/data/plugins/wordpress-importer |
| 11 | /tests/phpunit/data/.trac-ticket-cache* |
| 12 | /tests/qunit/compiled.html |
| 13 | /src/.wp-tests-version |
| 14 | /node_modules |
| 15 | /npm-debug.log |
23 | 16 | |
24 | 17 | # The WordPress output directory. |
25 | | build |
| 18 | /build |
| 19 | |
| 20 | # Files and folders in the wp-content directory that have a meaning in WordPress. |
| 21 | /src/wp-content/blogs.dir |
| 22 | /src/wp-content/languages |
| 23 | /src/wp-content/mu-plugins |
| 24 | /src/wp-content/plugins |
| 25 | /src/wp-content/themes |
| 26 | /src/wp-content/upgrade |
| 27 | /src/wp-content/uploads |
| 28 | /src/wp-content/advanced-cache.php |
| 29 | /src/wp-content/blog-deleted.php |
| 30 | /src/wp-content/blog-inactive.php |
| 31 | /src/wp-content/blog-suspended.php |
| 32 | /src/wp-content/db.php |
| 33 | /src/wp-content/db-error.php |
| 34 | /src/wp-content/debug.log |
| 35 | /src/wp-content/install.php |
| 36 | /src/wp-content/maintenance.php |
| 37 | /src/wp-content/object-cache.php |
| 38 | /src/wp-content/sunrise.php |
| 39 | |
| 40 | # Ignore other .gitignore files to allow for customizations. |
| 41 | .gitignore |