-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
53 lines (40 loc) · 759 Bytes
/
.gitignore
File metadata and controls
53 lines (40 loc) · 759 Bytes
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
# Ignore Gradle build files
.gradle/
build/
# Ignore Gradle wrapper files
gradle/wrapper/gradle-wrapper.properties
gradle/wrapper/gradle-wrapper.jar
# Ignore Eclipse files
.classpath
.project
.settings/
# Ignore IntelliJ IDEA project files
.idea/
*.iws
*.iml
*.ipr
out/
# Ignore OS-specific files
.DS_Store
Thumbs.db
# Ignore logs
*.log
# Ignore temporary files
*.tmp
*.swp
*~.nib
# Ignore compiled class files
*.class
# Ignore jar and war files
*.jar
*.war
# Ignore Maven specific files (in case you have mixed Maven and Gradle)
target/
# Ignore generated files
*.generated
# Ignore user-specific settings
.vscode/
# Ignore any submodule's .git directories
**/.git/
# Ignore other potential files from various IDEs or build tools
.idea_modules/