Skip to content

Commit 48180b2

Browse files
author
jay.huang
committed
Add gitignore file
1 parent 7b0ca1d commit 48180b2

File tree

1 file changed

+65
-0
lines changed

1 file changed

+65
-0
lines changed

.gitignore

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
### class
2+
*.class
3+
4+
### gradle ###
5+
.gradle
6+
/build/
7+
!gradle/wrapper/gradle-wrapper.jar
8+
9+
### STS ###
10+
.settings/
11+
.apt_generated
12+
.classpath
13+
.factorypath
14+
.project
15+
.settings
16+
.springBeans
17+
bin/
18+
19+
### IntelliJ IDEA ###
20+
.idea
21+
*.iws
22+
*.iml
23+
*.ipr
24+
rebel.xml
25+
26+
### NetBeans ###
27+
nbproject/private/
28+
build/
29+
nbbuild/
30+
dist/
31+
nbdist/
32+
.nb-gradle/
33+
34+
### maven ###
35+
target/
36+
*.war
37+
*.ear
38+
*.zip
39+
*.tar
40+
*.tar.gz
41+
42+
### logs ####
43+
/logs/
44+
*.log
45+
46+
### temp ignore ###
47+
*.cache
48+
*.diff
49+
*.patch
50+
*.tmp
51+
*.java~
52+
*.properties~
53+
*.xml~
54+
55+
### system ignore ###
56+
.DS_Store
57+
Thumbs.db
58+
Servers
59+
.metadata
60+
upload
61+
gen_code
62+
##
63+
db/db_back_dir/
64+
/redis/
65+

0 commit comments

Comments
 (0)