Skip to content

Commit 6ee2297

Browse files
committed
添加gitignore
1 parent aa6a28c commit 6ee2297

File tree

1 file changed

+141
-0
lines changed

1 file changed

+141
-0
lines changed

.gitignore

Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
######################
2+
# Project Specific
3+
######################
4+
/target/www/**
5+
/notes/**
6+
7+
######################
8+
# Node
9+
######################
10+
/node/**
11+
/node_tmp/**
12+
/node_modules/**
13+
14+
######################
15+
# SASS
16+
######################
17+
.sass-cache/**
18+
19+
######################
20+
# Eclipse
21+
######################
22+
*.pydevproject
23+
.project
24+
.metadata
25+
/bin/**
26+
/tmp/**
27+
/tmp/**/*
28+
*.tmp
29+
*.bak
30+
*.swp
31+
*~.nib
32+
local.properties
33+
.classpath
34+
.settings/**
35+
.loadpath
36+
/src/main/resources/rebel.xml
37+
38+
# External tool builders
39+
.externalToolBuilders/**
40+
41+
# Locally stored "Eclipse launch configurations"
42+
*.launch
43+
44+
# CDT-specific
45+
.cproject
46+
47+
# PDT-specific
48+
.buildpath
49+
50+
######################
51+
# Intellij
52+
######################
53+
.idea/**
54+
*.iml
55+
*.iws
56+
*.ipr
57+
*.ids
58+
*.orig
59+
60+
######################
61+
# Maven
62+
######################
63+
/log/**
64+
/target/**
65+
66+
######################
67+
# Gradle
68+
######################
69+
.gradle/**
70+
71+
######################
72+
# Package Files
73+
######################
74+
*.jar
75+
*.war
76+
*.ear
77+
*.db
78+
79+
######################
80+
# Windows
81+
######################
82+
# Windows image file caches
83+
Thumbs.db
84+
85+
# Folder config file
86+
Desktop.ini
87+
88+
######################
89+
# Mac OSX
90+
######################
91+
.DS_Store
92+
.svn
93+
94+
# Thumbnails
95+
._*
96+
97+
# Files that might appear on external disk
98+
.Spotlight-V100
99+
.Trashes
100+
101+
######################
102+
# Directories
103+
######################
104+
/build/**
105+
/bin/**
106+
/spring_loaded/**
107+
/deploy/**
108+
109+
######################
110+
# Logs
111+
######################
112+
*.log
113+
114+
######################
115+
# Others
116+
######################
117+
*.class
118+
*.*~
119+
*~
120+
.merge_file*
121+
122+
######################
123+
# Gradle Wrapper
124+
######################
125+
!gradle/wrapper/gradle-wrapper.jar
126+
127+
######################
128+
# Maven Wrapper
129+
######################
130+
!.mvn/wrapper/maven-wrapper.jar
131+
132+
######################
133+
# ESLint
134+
######################
135+
.eslintcache
136+
node/
137+
######################
138+
# Test Resource Local File
139+
######################
140+
application-dev.yml
141+
bootstrap-dev.yml

0 commit comments

Comments
 (0)