Skip to content

Commit 71ea5bf

Browse files
committed
Exclude further files from git
1 parent afea03b commit 71ea5bf

File tree

1 file changed

+53
-2
lines changed

1 file changed

+53
-2
lines changed

.gitignore

+53-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,53 @@
1-
/bin
2-
/target
1+
*.class
2+
3+
# Package Files #
4+
*.jar
5+
*.war
6+
*.ear
7+
8+
# IntelliJ
9+
.idea/
10+
*.iml
11+
*.ipr
12+
*.iws
13+
14+
# Eclipse
15+
.classpath
16+
.project
17+
.metadata
18+
.settings/
19+
local.properties
20+
21+
# NetBeans
22+
nbbuild/
23+
nbdist/
24+
nbproject/
25+
nb-configuration.xml
26+
nbactions.xml
27+
28+
# Maven, etc.
29+
out/
30+
target/
31+
32+
# WDTK dumpfile download directory
33+
dumpfiles/
34+
# WDTK example result directory
35+
results/
36+
37+
# Don't apply the above to src/ where Java requires
38+
# subdirectories named according to package names.
39+
# We do not want to forbid things like "dumpfiles" in
40+
# package names.
41+
!src/
42+
43+
# Use as directory for local testing code
44+
**/src/local/
45+
46+
# General
47+
*.pyc
48+
*~
49+
*.bak
50+
*.sw[o,p]
51+
*.tmp
52+
.DS_Store
53+
Thumbs.db

0 commit comments

Comments
 (0)