Make WordPress Core

Ticket #27207: 27207.2.diff

File 27207.2.diff, 1.6 KB (added by markjaquith, 11 years ago)

Do not ignore new twenty* themes

  • .gitignore

     
    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
    132
     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
     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
     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
    2038
    21 node_modules
    22 npm-debug.log
     39# Do not ignore "twenty*" themes
     40!/src/wp-content/themes/twenty*
    2341
    24 # The WordPress output directory.
    25 build
     42# Ignore other .gitignore files to allow for personal customizations
     43.gitignore