-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.gitignore
89 lines (77 loc) · 1.86 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
# ignore word doc
/docs/*.docx
# ignore phpstorm files
/.idea
*.DS_Store
# ignore our admin_toolbox stuff if it was used
/admin_toolbox
# Ignore all not in specifically included sub folders
/*
!/sfcrel/
!/app/
!/docs/
!/js/
!/lib/
!/var/
!/shell/
!/.gitignore
!/composer.json
!/modman
# Don't ignore build scripts
!/build.xml
!/phpunit.xml*
!/phpdox.xml*
!/CODEOWNERS
# Don't ignore readme files
!/*.md
# Allow shell scripts for kount ext
/shell/*
!/shell/bv_*.php
# Needed for Magento pacakge configuration file
/var/*
!/var/connect/
# ignore all in js, except module files for this module
/js/*
!/js/sezzle/
# Ignore lib other than Sezzle
/lib/*
# Ignore all in app, except code & etc
# Ignore all in app/code except local/Sezzle
/app/*
!/app/code/
!/app/etc/
!/app/design/
# Ignore all in app/code except Sezzle
/app/code/core
/app/code/local
/app/etc/community
/app/code/community/*
!/app/code/community/Sezzle
!/app/code/community/Sezzle/*
!/deploy
!/docker.env
!/docker-compose.yml
!/Dockerfile
# Ignore all of app/etc except our specific module files
/app/etc/*
!/app/etc/modules/
/app/etc/modules/*
!/app/etc/modules/Sezzle_Sezzlepay.xml
#Ignore all of app/design except for our files
/app/design/*
!/app/design/frontend/
/app/design/frontend/*
!/app/design/frontend/base/
!/app/design/frontend/base/default/
/app/design/frontend/base/default/*
!/app/design/frontend/base/default/layout/
/app/design/frontend/base/default/layout/*
!/app/design/frontend/base/default/layout/sezzlepay.xml
!/app/design/adminhtml/default/default/layout/sezzlepay.xml
!/app/design/frontend/base/default/template/
/app/design/frontend/base/default/template/*
!/app/design/frontend/base/default/template/sezzlepay/
!/app/design/frontend/base/default/template/sezzlepay/*
!/app/design/adminhtml/default/default/template/sezzlepay/
!/app/design/adminhtml/default/default/template/sezzlepay/*
composer.json