Make WordPress Core

source: tags/4.5.25/.gitignore

Last change on this file was 50209, checked in by desrosj, 5 years ago

Build/Test Tools: Ignore patch related files, so they can't be accidentally committed.

Merges [39360-39361] to the 4.5 branch.
See #38727.

File size: 1.1 KB
Line 
1# gitignore file for WordPress Core
2
3# Configuration files with possibly sensitive information
4wp-config.php
5wp-tests-config.php
6.htaccess
7
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
16/build
17/tests/phpunit/build
18/wp-cli.local.yml
19
20# Files and folders that get created in wp-content
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# Operating system specific files
41.DS_Store
42
43# Ignore other .gitignore files to allow for personal customizations
44.gitignore
45
46# Files related to applying patches
47*.rej
48*.orig
49*.patch
50*.diff
Note: See TracBrowser for help on using the repository browser.