-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore_wordpress
More file actions
30 lines (26 loc) · 931 Bytes
/
.gitignore_wordpress
File metadata and controls
30 lines (26 loc) · 931 Bytes
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
### WordPress webdev-gitignore by https://github.com/TurboLabIt/webdev-gitignore ###
#######################################################################
# Ignore the whole WordPress #
##############################
/public/*
# Allow some from /wp-content/ #
################################
!/public/wp-content/
/public/wp-content/*
# Allow my theme(s) #
#####################
!/public/wp-content/themes/
/public/wp-content/themes/*
!/public/wp-content/themes/my-app
/public/wp-content/themes/my-app/vendor/
/public/wp-content/themes/my-app/assets/js/build/
/public/wp-content/themes/my-app/assets/scss/build/
/public/wp-content/themes/my-app/font/
/public/wp-content/themes/my-app/*.ttf
/public/wp-content/themes/my-app/*.eot
/public/wp-content/themes/my-app/assets/js/bootstrap/js/
# Allow my plugin(s) #
######################
!/public/wp-content/plugins/
/public/wp-content/plugins/*
!/public/wp-content/plugins/my-app