-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.gitignore
41 lines (35 loc) · 1.01 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
#Ignore specific files
.DS_Store
.sass-cache
node_modules
# Ignore everything in the root except the "public" directory.
/*
!.gitignore
!Jenkinsfile
!README.md
!docker-compose.*
!Dockerfile
!LICENSE
!.gitlab-ci.yml
!/public
!/.github
!/.infrastructure
#Ignore everything in public except "wp-content" directory.
public/*
!public/wp-content/
# Ignore everything in the "wp-content" directory, except the "plugins"
# and "themes" directories.
public/wp-content/*
!public/wp-content/plugins/
!public/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/my-single-file-plugin.php
public/wp-content/plugins/*
!public/wp-content/plugins/my-custom-plugin/
# Ignore everything in the "themes" directory, except the themes you
# specify (see the commented-out example for a hint on how to do this.)
public/wp-content/themes/*
!public/wp-content/themes/my-custom-theme/
# Ignore Vault password
.vault-password