-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
53 lines (53 loc) · 1.2 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# ======================================================================================================================
# build/ 디렉터리의 모든파일
# doc/notes.txt 특정파일
# doc/*.txt 특정디렉토리의 txt 파일 하위 폴더 미포함
# doc/**/*.pdf 하위디렉터리의 모든 pdf 파일
# ======================================================================================================================
**/build/
**/bin/
**/target/
**/share/
**/classes/
**/WEB-INF/lib/*.jar
**/libs/
# log
**/log/
**/logs/
*.log
*.log.*
# temp or null
*.tmp
temp.*
temp/
**/nul
**/null
# dev
.smarttomcat/
.m2/
.idea/
.vscode/
.c9/
.mvn/
.metadata/
.obsidian/
.gradle/
gradle/
.ipynb_checkpoints/
*.iml
# eclipse
.settings/
.project
.classpath
.factorypath
# Package Files
*.class
*.war
*.ear
*.db
# Windows image file caches # Folder config file
Thumbs.db
Desktop.ini
# ======================================================================================================================
# project directory 명시해서 필요없는 추가 동작이 일어나지 않게함
# ======================================================================================================================