-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitignore
104 lines (83 loc) · 2.03 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# =========================
# Project root folders
# =========================
.sass-cache
bin
bower_components
export
import
node_modules
release
releases
htdocs/wp-content/themes/wp-project-base/assets/js/dist/custom/modernizr-custom.js
# =========================
# Sass projects
# =========================
# If you are using _just_ Sass, you probably don't want to commit _any_
# compiled .css
#
*.css
# Ignore everything in the "sass" directory except the files and
# directories you specify.
sass/*
!sass/base
!sass/theme_*
!sass/vendor
!sass/*.scss
# =========================
# VIM Temp Files
# =========================
*~
*.swp
# =========================
# WordPress
# =========================
# Ignore everything in the "htdocs" directory except the "wp-content" directory.
htdocs/*
!htdocs/wp-content/
# Ignore everything in the "wp-content" directory, except the "plugins"
# and "themes" directories.
htdocs/wp-content/*
!htdocs/wp-content/plugins/
!htdocs/wp-content/themes/
!htdocs/wp-content/mu-plugins/
# Ignore everything in the "plugins" directory, except the plugins you
# specify (see the commented-out examples for hints on how to do this.)
htdocs/wp-content/plugins/*
!htdocs/wp-content/plugins/wp-project-base-plugin/
# Ignore everything in the "mu-plugins" directory, except the mu-plugins you
# specify (see the commented-out examples for hints on how to do this.)
htdocs/wp-content/mu-plugins/*
!htdocs/wp-content/mu-plugins/load.php
# Ignore everything in the "themes" directory, except the themes you
# specify (see the commented-out example for a hint on how to do this.)
htdocs/wp-content/themes/*
!htdocs/wp-content/themes/wp-project-base/
# =========================
# Operating System Files
# =========================
# Windows
# =========================
# Windows image file caches
Thumbs.db
ehthumbs.db
# Folder config file
Desktop.ini
# Recycle Bin used on file shares
$RECYCLE.BIN/
# Windows Installer files
*.cab
*.msi
*.msm
*.msp
*.map
# Misc
*.zip
*.tar
*.gz
*.sql
*.sublime-*
*.yml
*.orig
*.log
.DS_Store