forked from wpsharks/s2member
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
110 lines (73 loc) · 2.07 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# NOTE: It is not absolutely required (but highly recommended) that you have: `ignorecase = true`
# in your `.gitconfig` file to maximize compatibility with some of these exclusion patterns.
# NOTE: `/**` does not exclude the directory itself like in Phing.
# Use only a trailing `/` to achieve that here.
# Local
.~*
# Logs
*.log
# Backups
*~
*.bak
# Vendor
vendor/
# Node
node_modules/
# SASS
.sass-cache/
# IntelliJ
.idea/
# Sublime
*.sublime-workspace
*.sublime-project
# CTags
*.tags
*.ctags
# VCS
.git/
.svn/
_svn/
CVS/
.cvsignore
.bzr/
.bzrignore
.hg/
.hgignore
SCCS/
RCS/
# PC Files
$RECYCLE.BIN/
Desktop.ini
Thumbs.db
ehthumbs.db
# Mac Files
.AppleDB
.AppleDouble
.AppleDesktop
.com.apple.timemachine.donotpresent
Network Trash Folder
Temporary Items
.LSOverride
.Spotlight-V100
.VolumeIcon.icns
.TemporaryItems
.fseventsd
.DS_Store
.Trashes
.apdisk
Icon?
!Icons
._*
# AWS
.elasticbeanstalk/
# Vagrant
.vagrant/
# For shell glob patterns. This includes Git files too. We simply maintain this list together with `.gitignore`.
# *~;*.log;*.bak;node_modules;.idea;*.sublime-workspace;*.sublime-project;.git;.gitignore;.gitattributes;.gitmodules;.gitchange;.svn;_svn;CVS;.cvsignore;.bzr;.bzrignore;.hg;.hgignore;SCCS;RCS;$RECYCLE.BIN;Desktop.ini;Thumbs.db;ehthumbs.db;.AppleDB;.AppleDouble;.AppleDesktop;.com.apple.timemachine.donotpresent;Network Trash Folder;Temporary Items;.LSOverride;.Spotlight-V100;.VolumeIcon.icns;.TemporaryItems;.fseventsdv.DS_Store;.Trashes;.apdisk;._*;.elasticbeanstalk;.vagrant
# This list is for IntelliJ IDEA / PhpStorm `File Types` configuration. Some files we actually WANT to work with as part of a project.
# .sass-cache;.idea;*.sublime-workspace;*.sublime-project;.git;.svn;_svn;CVS;.bzr;.hg;SCCS;RCS;$RECYCLE.BIN;Desktop.ini;Thumbs.db;ehthumbs.db;.AppleDB;.AppleDouble;.AppleDesktop;.com.apple.timemachine.donotpresent;Network Trash Folder;Temporary Items;.LSOverride;.Spotlight-V100;.VolumeIcon.icns;.TemporaryItems;.fseventsdv.DS_Store;.Trashes;.apdisk;._*;.vagrant
# <custom>
/s2member-pro/
/s2member-files/
/s2member-logs/
# </custom>