-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitignore
81 lines (68 loc) · 1.53 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
#
# Adapted from here: http://www.billerickson.net/git-push-wpengine/
#
# Ignore everything #
**
# Keep basic folders EMPTY
!wp-content/
wp-content/**
!wp-content/themes/
!wp-content/plugins/
wp-content/themes/**
wp-content/themes/**/node_modules/
wp-content/themes/**/vendor/
wp-content/plugins/**
# Add two rules for each Theme or Plugin you want to include:
# 1. !folder-name/ <-- includes the Plugin and top level files
# 2. !folder-name/** <-- includes the Plugin and sub level files recursively, except for the "Ignore some other system generated files" rules below
###############################
# Start editing!
# Custom Plugin
# Other dependencies
!package.json
!package-lock.json
!yarn.json
!yarn-lock.json
!.deployignore
!.eslintrc
!.env.sample
# Theme
!wp-content/themes/mill3-wp-theme-boilerplate/
!wp-content/themes/mill3-wp-theme-boilerplate/**
wp-content/themes/mill3-wp-theme-boilerplate/node_modules/
wp-content/themes/mill3-wp-theme-boilerplate/vendor/
# Stop editing!
############################################
# Ignore some other system generated files #
############################################
.DS_Store
._*
.Trashes
Thumbs.db
dist_dev
bower_components
node_modules
npm-debug.log
.tm_properties
.AppleDouble
.AppleTemp*
:2e*
._*
*~
# Keep document files #
###################################
!README.md
!CHANGELOG.md
# Keep .gitignore #
###################################
!.gitignore
!.gitmodules
# Docker Sample Config
!docker-compose.yml
!DockerFile
!uploads.ini
# CI
!.circleci
!.circleci/**
!.github
!.github/**