邵洋
1 ano atrás
|
|
@@ -0,0 +1,50 @@
|
|
|
+
|
|
|
+# .gitignore
|
|
|
+# Bytecode files
|
|
|
+*.class
|
|
|
+
|
|
|
+# IntelliJ IDEA
|
|
|
+.idea/
|
|
|
+*.iml
|
|
|
+*.iws
|
|
|
+*.ipr
|
|
|
+
|
|
|
+# Eclipse
|
|
|
+.classpath
|
|
|
+.project
|
|
|
+.settings/
|
|
|
+bin/
|
|
|
+target/
|
|
|
+
|
|
|
+# Maven
|
|
|
+target/
|
|
|
+pom.xml.tag
|
|
|
+pom.xml.releaseBackup
|
|
|
+pom.xml.versionsBackup
|
|
|
+release.properties
|
|
|
+dependency-reduced-pom.xml
|
|
|
+
|
|
|
+# Visual Studio Code
|
|
|
+.vscode/
|
|
|
+
|
|
|
+# OS generated files #
|
|
|
+.DS_Store
|
|
|
+.DS_Store?
|
|
|
+._*
|
|
|
+.Spotlight-V100
|
|
|
+.Trashes
|
|
|
+
|
|
|
+# Environment variables file
|
|
|
+.env
|
|
|
+
|
|
|
+# Logs
|
|
|
+logs/
|
|
|
+*.log
|
|
|
+
|
|
|
+# Runtime data
|
|
|
+*.run
|
|
|
+
|
|
|
+# Spring Boot
|
|
|
+build/
|
|
|
+*.jar
|
|
|
+*.war
|
|
|
@@ -0,0 +1,8 @@
|
|
|
+# 默认忽略的文件
|
|
|
+/shelf/
|
|
|
+/workspace.xml
|
|
|
+# 基于编辑器的 HTTP 客户端请求
|
|
|
+/httpRequests/
|
|
|
+# Datasource local storage ignored files
|
|
|
+/dataSources/
|
|
|
+/dataSources.local.xml
|