-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
89 lines (89 loc) · 1.88 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
########################
# Wordpress
# global ignore file
########################
#
# Don't ignore .rej and .orig as we want to see/clean files after conflict resolution.
#
# For local exclude patterns please edit .git/info/exclude.
#
########################
#
# Ignore temporary files (left by editors and OS)
*~
*.bak
*.swp
.DS_Store
#
# Ignore by common IDEs used directories/files
nbproject
*.idea
*.project
.buildpath
.settings
.TemporaryItems
.webprj
#
# Ignore temporary files and folders
.cache
.commit
.php_cs.cache
.sass-cache
.session
phantomjsdriver.log
#
# Ignore build stuff
/Build/bower_components/*
/Build/node_modules/*
/Build/JavaScript
/Build/typings/*
!/Build/typings/no-def*
#
# Ignore TypeScript stuff
.baseDir.ts
.tscache
#
########################
#
# Project related
#
########################
#
# Ignore composer generated/ downloaded files
/auth.json
/bin/
/vendor/
#
# Ignore optional "local" environment settings
# (e.g. any sensitive settings you do not want to commit to version control, e.g. database password)
/config/system/environments/local.php
/.env
/.env.local
#
# Ignore everything in the webroot except wp-content/ and wp-config.php (and other project relevant stuff)
/public/*
!/public/wp-content/
!/public/.htaccess
!/public/index.php
!/public/wp-config.php
#
# Ignore everything in the wp-content/ directory, except the plugins/ and themes/ sub-directories
/public/wp-content/*
!/public/wp-content/plugins/
!/public/wp-content/themes/
#
# Ignore everything in the plugins/ directory, except the plugins you specify
/public/wp-content/plugins/*
!/public/wp-content/plugins/my-single-file-plugin.php
!/public/wp-content/plugins/my-directory-plugin/
#
# Ignore everything in the themes/ directory, except the themes you specify
/public/wp-content/themes/*
!/public/wp-content/themes/your-child-theme/
#
########################
#
# Global excludes
#
########################
!**/.gitkeep