Skip to content

Commit cd31702

Browse files
author
chenll
committed
添加.gitignore
1 parent a437699 commit cd31702

File tree

2 files changed

+129
-0
lines changed

2 files changed

+129
-0
lines changed

.gitignore

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
#
2+
3+
4+
# Created by .ignore support plugin (hsz.mobi)
5+
### Java template
6+
*.class
7+
8+
# Mobile Tools for Java (J2ME)
9+
.mtj.tmp/
10+
11+
# Package Files #
12+
*.jar
13+
*.war
14+
*.ear
15+
16+
*.lock
17+
*.bin
18+
19+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
20+
hs_err_pid*
21+
### Gradle template
22+
.gradle
23+
*/.gradle
24+
build/
25+
26+
buildSrc/.gradle/
27+
28+
# Ignore Gradle GUI config
29+
gradle-app.setting
30+
31+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
32+
!gradle-wrapper.jar
33+
34+
# Cache of project
35+
.gradletasknamecache
36+
37+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
38+
# gradle/wrapper/gradle-wrapper.properties
39+
40+
### JetBrains template
41+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
42+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
43+
44+
# User-specific stuff:
45+
.idea/workspace.xml
46+
.idea/tasks.xml
47+
.idea/dictionaries
48+
.idea/vcs.xml
49+
.idea/jsLibraryMappings.xml
50+
51+
# Sensitive or high-churn files:
52+
.idea/dataSources.ids
53+
.idea/dataSources.xml
54+
.idea/dataSources.local.xml
55+
.idea/sqlDataSources.xml
56+
.idea/dynamic.xml
57+
.idea/uiDesigner.xml
58+
59+
# Gradle:
60+
61+
.idea/gradle.xml
62+
.idea/libraries
63+
64+
# Mongo Explorer plugin:
65+
.idea/mongoSettings.xml
66+
67+
## File-based project format:
68+
*.iws
69+
70+
## Plugin-specific files:
71+
72+
# IntelliJ
73+
/out/
74+
75+
# mpeltonen/sbt-idea plugin
76+
.idea_modules/
77+
78+
# JIRA plugin
79+
atlassian-ide-plugin.xml
80+
81+
# Crashlytics plugin (for Android Studio and IntelliJ)
82+
com_crashlytics_export_strings.xml
83+
crashlytics.properties
84+
crashlytics-build.properties
85+
fabric.properties
86+
db.properties
87+
config.properties
88+
89+
.idea
90+
*/build
91+
92+
### OSX template
93+
*.DS_Store
94+
.AppleDouble
95+
.LSOverride
96+
97+
# Icon must end with two \r
98+
Icon
99+
100+
# Thumbnails
101+
._*
102+
103+
# Files that might appear in the root of a volume
104+
.DocumentRevisions-V100
105+
.fseventsd
106+
.Spotlight-V100
107+
.TemporaryItems
108+
.Trashes
109+
.VolumeIcon.icns
110+
.com.apple.timemachine.donotpresent
111+
112+
# Directories potentially created on remote AFP share
113+
.AppleDB
114+
.AppleDesktop
115+
Network Trash Folder
116+
Temporary Items
117+
.apdisk
118+
119+
# data file
120+
*.csv

.idea/libraries/Gradle__com_google_api_api_annotations_1_0_SNAPSHOT.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)