Skip to content

Commit 08b05dc

Browse files
author
Willy
authored
Create .gitignore
1 parent 6690379 commit 08b05dc

File tree

1 file changed

+74
-0
lines changed

1 file changed

+74
-0
lines changed

.gitignore

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# Directories #
2+
/build/
3+
/build
4+
*/bin/
5+
/bin/
6+
target/
7+
build/
8+
9+
# OS Files #
10+
.DS_Store
11+
12+
*.class
13+
14+
# Package Files #
15+
*.jar
16+
*.war
17+
*.ear
18+
*.db
19+
20+
######################
21+
# Windows
22+
######################
23+
24+
# Windows image file caches
25+
Thumbs.db
26+
27+
# Folder config file
28+
Desktop.ini
29+
30+
######################
31+
# OSX
32+
######################
33+
34+
.DS_Store
35+
.svn
36+
37+
# Thumbnails
38+
._*
39+
40+
# Files that might appear on external disk
41+
.Spotlight-V100
42+
.Trashes
43+
44+
45+
######################
46+
# Eclipse
47+
######################
48+
49+
*.pydevproject
50+
.metadata
51+
bin/**
52+
tmp/**
53+
tmp/**/*
54+
*.tmp
55+
*.bak
56+
*.swp
57+
*~.nib
58+
local.properties
59+
.classpath
60+
.settings/
61+
.loadpath
62+
/src/main/resources/rebel.xml
63+
# External tool builders
64+
.externalToolBuilders/
65+
66+
# Locally stored "Eclipse launch configurations"
67+
*.launch
68+
69+
# CDT-specific
70+
.cproject
71+
72+
# PDT-specific
73+
.buildpath
74+
*/.gradle/

0 commit comments

Comments
 (0)