-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
51 lines (45 loc) · 1.68 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
# This is a template .gitignore file for git-managed WordPress projects.
#
# Fact: you don't want WordPress core files, or your server-specific
# configuration files etc., in your project's repository. You just don't.
#
# Solution: stick this file up your repository root (which it assumes is
# also the WordPress root directory) and add exceptions for any plugins,
# themes, and other directories that should be under version control.
#
# See the comments below for more info on how to add exceptions for your
# content. Or see git's documentation for more info on .gitignore files:
# http://kernel.org/pub/software/scm/git/docs/gitignore.html
# Ignore everything in the root except the "wp-content" directory.
/*
!wp-content/
!.gitignore
!.gitattributeseverything
# Ignore everything in the "wp-content" directory, except the "plugins"
# and "mu-plugins" and "themes" directories.
wp-content/*
!wp-content/plugins/
!wp-content/mu-plugins/
!wp-content/themes/
# Ignore everything in the "plugins" directory, except the plugins you
# specify (see the commented-out examples for hints on how to do this.)
wp-content/plugins/*
# !wp-content/plugins/my-single-file-plugin.php
# !wp-content/plugins/my-directory-plugin/
!wp-content/plugins/base*/
# Ignore everything in the "themes" directory, except the themes you
# specify (see the commented-out example for a hint on how to do this.)
wp-content/themes/*
!wp-content/themes/base/
# Ignore generated theme files.
wp-content/themes/base/acf-json/
wp-content/themes/base/assets/
wp-content/themes/base/screenshot.png
wp-content/themes/base/style.css
# Ignore all these misc files and folders.
.DS_Store
.DS_Store?
**/node_modules/
*.sass-cache*
*.css.map
backups/