Skip to content

Commit 9dfc0f2

Browse files
authored
Merge pull request #10 from Namsoo315/남현수-sprint3
남현수 sprint3
2 parents fe13d90 + 8c392c9 commit 9dfc0f2

27 files changed

+628
-401
lines changed

.gitignore

Lines changed: 34 additions & 142 deletions
Original file line numberDiff line numberDiff line change
@@ -1,145 +1,37 @@
1-
# Created by https://www.toptal.com/developers/gitignore/api/intellij+all,gradle,windows
2-
# Edit at https://www.toptal.com/developers/gitignore?templates=intellij+all,gradle,windows
3-
4-
### Intellij+all ###
5-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
6-
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
7-
8-
# User-specific stuff
9-
.idea/**/workspace.xml
10-
.idea/**/tasks.xml
11-
.idea/**/usage.statistics.xml
12-
.idea/**/dictionaries
13-
.idea/**/shelf
14-
15-
# AWS User-specific
16-
.idea/**/aws.xml
17-
18-
# Generated files
19-
.idea/**/contentModel.xml
20-
21-
# Sensitive or high-churn files
22-
.idea/**/dataSources/
23-
.idea/**/dataSources.ids
24-
.idea/**/dataSources.local.xml
25-
.idea/**/sqlDataSources.xml
26-
.idea/**/dynamic.xml
27-
.idea/**/uiDesigner.xml
28-
.idea/**/dbnavigator.xml
29-
30-
# Gradle
31-
.idea/**/gradle.xml
32-
.idea/**/libraries
33-
34-
# Gradle and Maven with auto-import
35-
# When using Gradle or Maven with auto-import, you should exclude module files,
36-
# since they will be recreated, and may cause churn. Uncomment if using
37-
# auto-import.
38-
# .idea/artifacts
39-
# .idea/compiler.xml
40-
# .idea/jarRepositories.xml
41-
# .idea/modules.xml
42-
# .idea/*.iml
43-
# .idea/modules
44-
# *.iml
45-
# *.ipr
46-
47-
# CMake
48-
cmake-build-*/
49-
50-
# Mongo Explorer plugin
51-
.idea/**/mongoSettings.xml
52-
53-
# File-based project format
54-
*.iws
55-
56-
# IntelliJ
57-
out/
58-
59-
# mpeltonen/sbt-idea plugin
60-
.idea_modules/
61-
62-
# JIRA plugin
63-
atlassian-ide-plugin.xml
64-
65-
# Cursive Clojure plugin
66-
.idea/replstate.xml
67-
68-
# SonarLint plugin
69-
.idea/sonarlint/
70-
71-
# Crashlytics plugin (for Android Studio and IntelliJ)
72-
com_crashlytics_export_strings.xml
73-
crashlytics.properties
74-
crashlytics-build.properties
75-
fabric.properties
76-
77-
# Editor-based Rest Client
78-
.idea/httpRequests
79-
80-
# Android studio 3.1+ serialized cache file
81-
.idea/caches/build_file_checksums.ser
82-
83-
### Intellij+all Patch ###
84-
# Ignore everything but code style settings and run configurations
85-
# that are supposed to be shared within teams.
86-
87-
.idea/*
88-
89-
!.idea/codeStyles
90-
!.idea/runConfigurations
91-
92-
### Windows ###
93-
# Windows thumbnail cache files
94-
Thumbs.db
95-
Thumbs.db:encryptable
96-
ehthumbs.db
97-
ehthumbs_vista.db
98-
99-
# Dump file
100-
*.stackdump
101-
102-
# Folder config file
103-
[Dd]esktop.ini
104-
105-
# Recycle Bin used on file shares
106-
$RECYCLE.BIN/
107-
108-
# Windows Installer files
109-
*.cab
110-
*.msi
111-
*.msix
112-
*.msm
113-
*.msp
114-
115-
# Windows shortcuts
116-
*.lnk
117-
118-
### Gradle ###
1+
HELP.md
1192
.gradle
120-
**/build/
121-
!src/**/build/
3+
build/
4+
!gradle/wrapper/gradle-wrapper.jar
5+
!**/src/main/**/build/
6+
!**/src/test/**/build/
1227

123-
# Ignore Gradle GUI config
124-
gradle-app.setting
125-
126-
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
127-
!gradle-wrapper.jar
128-
129-
# Avoid ignore Gradle wrappper properties
130-
!gradle-wrapper.properties
131-
132-
# Cache of project
133-
.gradletasknamecache
134-
135-
# Eclipse Gradle plugin generated files
136-
# Eclipse Core
137-
.project
138-
# JDT-specific (Eclipse Java Development Tools)
8+
### STS ###
9+
.apt_generated
13910
.classpath
140-
141-
### Gradle Patch ###
142-
# Java heap dump
143-
*.hprof
144-
145-
# End of https://www.toptal.com/developers/gitignore/api/intellij+all,gradle,windows
11+
.factorypath
12+
.project
13+
.settings
14+
.springBeans
15+
.sts4-cache
16+
bin/
17+
!**/src/main/**/bin/
18+
!**/src/test/**/bin/
19+
20+
### IntelliJ IDEA ###
21+
.idea
22+
*.iws
23+
*.iml
24+
*.ipr
25+
out/
26+
!**/src/main/**/out/
27+
!**/src/test/**/out/
28+
29+
### NetBeans ###
30+
/nbproject/private/
31+
/nbbuild/
32+
/dist/
33+
/nbdist/
34+
/.nb-gradle/
35+
36+
### VS Code ###
37+
.vscode/

0 commit comments

Comments
 (0)