Make WordPress Core

Changeset 27295


Ignore:
Timestamp:
02/26/2014 06:44:27 PM (11 years ago)
Author:
markjaquith
Message:

More robust .gitignore file

fixes #27207. props TobiasBg, markjaquith.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/.gitignore

    r26578 r27295  
    1 lib-cov
    2 *.seed
    3 *.log
    4 *.csv
    5 *.dat
    6 *.out
    7 *.pid
    8 *.gz
     1# gitignore file for WordPress Core
    92
    10 pids
    11 logs
    12 results
    13 
     3# Configuration files with possibly sensitive information
    144wp-config.php
    155wp-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
    207
    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
     16/build
     17/tests/phpunit/build
    2318
    24 # The WordPress output directory.
    25 build
     19# Files and folders that get created in wp-content
     20/src/wp-content/blogs.dir
     21/src/wp-content/languages
     22/src/wp-content/mu-plugins
     23/src/wp-content/plugins/*
     24/src/wp-content/themes/*
     25/src/wp-content/upgrade
     26/src/wp-content/uploads
     27/src/wp-content/advanced-cache.php
     28/src/wp-content/blog-deleted.php
     29/src/wp-content/blog-inactive.php
     30/src/wp-content/blog-suspended.php
     31/src/wp-content/db.php
     32/src/wp-content/db-error.php
     33/src/wp-content/debug.log
     34/src/wp-content/install.php
     35/src/wp-content/maintenance.php
     36/src/wp-content/object-cache.php
     37/src/wp-content/sunrise.php
     38
     39# Do not ignore "twenty*" themes
     40!/src/wp-content/themes/twenty*
     41
     42# Ignore other .gitignore files to allow for personal customizations
     43.gitignore
Note: See TracChangeset for help on using the changeset viewer.