-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
97 lines (82 loc) · 1.51 KB
/
.gitignore
File metadata and controls
97 lines (82 loc) · 1.51 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# ============================================
# JAVA + MAVEN + INTELLIJ IDEA .gitignore
# ============================================
# -------- Maven build output --------
target/
!src/main/**/target/
!src/test/**/target/
# -------- IntelliJ IDEA --------
.idea/
*.iml
*.iws
*.ipr
out/
# -------- Eclipse / NetBeans (kullansan bile karışmasın diye) --------
.classpath
.project
.settings/
.nb-gradle/
nbproject/
# -------- OS (işletim sistemi) dosyaları --------
# macOS
.DS_Store
.AppleDouble
.LSOverride
# Windows
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
# Linux
*~
# -------- Java build artifacts --------
*.class
*.jar
*.war
*.ear
*.nar
*.zip
*.tar.gz
*.rar
# -------- Logs --------
*.log
*.out
*.tmp
# -------- Environment / Local Configs --------
.env
.env.local
*.local.properties
# -------- IntelliJ cache / indexes --------
.idea/workspace.xml
.idea/tasks.xml
.idea/dictionaries
.idea/shelf/
.idea/httpRequests/
.idea/dataSources/
.idea/sonarlint/
.idea/libraries/
.idea/caches/
# -------- Maven Wrapper (opsiyonel, ister tut ister sil) --------
.mvn/wrapper/maven-wrapper.jar
.mvn/wrapper/maven-wrapper.properties
# -------- Test reports, coverage, profiling --------
*.coverage
*.coverage.xml
*.hprof
*.pid
*.gc
*.stackdump
# -------- Temporary Files --------
*.bak
*.swp
*.swo
*.tmp
# -------- JetBrains Local Run Configs --------
.idea/runConfigurations.xml
.idea/gradle.xml
.idea/compiler.xml
.idea/misc.xml
.idea/modules.xml
# -------- IDE metadata (diğer editörler) --------
.vscode/
.history/