Skip to content

Commit a4e9295

Browse files
committed
Added wordpress files
1 parent b786944 commit a4e9295

5,770 files changed

Lines changed: 1621847 additions & 71525 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 101 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,101 @@
1-
forum/images/
2-
forum/xtra/
1+
# -----------------------------------------------------------------
2+
# .gitignore for WordPress
3+
# Bare Minimum Git
4+
# http://ironco.de/bare-minimum-git/
5+
# ver 20150227
6+
#
7+
# This file is tailored for a WordPress project
8+
# using the default directory structure
9+
#
10+
# This file specifies intentionally untracked files to ignore
11+
# http://git-scm.com/docs/gitignore
12+
#
13+
# NOTES:
14+
# The purpose of gitignore files is to ensure that certain files not
15+
# tracked by Git remain untracked.
16+
#
17+
# To ignore uncommitted changes in a file that is already tracked,
18+
# use `git update-index --assume-unchanged`.
19+
#
20+
# To stop tracking a file that is currently tracked,
21+
# use `git rm --cached`
22+
#
23+
# Change Log:
24+
# 20150227 Ignore hello.php plugin. props @damienfa
25+
# 20150227 Change theme ignore to wildcard twenty*. props @Z33
26+
# 20140606 Add .editorconfig as a tracked file
27+
# 20140404 Ignore database, compiled, and packaged files
28+
# 20140404 Header Information Updated
29+
# 20140402 Initially Published
30+
#
31+
# -----------------------------------------------------------------
32+
33+
# ignore everything in the root except the "wp-content" directory.
34+
/*
35+
!wp-content/
36+
37+
# ignore all files starting with .
38+
.*
39+
40+
# track this file .gitignore (i.e. do NOT ignore it)
41+
!.gitignore
42+
43+
# track .editorconfig file (i.e. do NOT ignore it)
44+
!.editorconfig
45+
46+
# track readme.md in the root (i.e. do NOT ignore it)
47+
!readme.md
48+
49+
# ignore all files that start with ~
50+
~*
51+
52+
# ignore OS generated files
53+
ehthumbs.db
54+
Thumbs.db
55+
56+
# ignore Editor files
57+
*.sublime-project
58+
*.sublime-workspace
59+
*.komodoproject
60+
61+
# ignore log files and databases
62+
*.log
63+
*.sql
64+
*.sqlite
65+
66+
# ignore compiled files
67+
*.com
68+
*.class
69+
*.dll
70+
*.exe
71+
*.o
72+
*.so
73+
74+
# ignore packaged files
75+
*.7z
76+
*.dmg
77+
*.gz
78+
*.iso
79+
*.jar
80+
*.rar
81+
*.tar
82+
*.zip
83+
84+
# ignore everything in the "wp-content" directory, except:
85+
# "mu-plugins" directory
86+
# "plugins" directory
87+
# "themes" directory
88+
wp-content/*
89+
!wp-content/mu-plugins/
90+
!wp-content/plugins/
91+
!wp-content/themes/
92+
93+
# ignore these plugins from the core
94+
wp-content/plugins/hello.php
95+
wp-content/plugins/akismet/
96+
97+
# ignore specific themes
98+
wp-content/themes/twenty*/
99+
100+
# ignore node/grunt dependency directories
101+
node_modules/

0 commit comments

Comments
 (0)