Skip to content

Commit 4801cc2

Browse files
committed
Updated gitignore
1 parent df40c34 commit 4801cc2

File tree

1 file changed

+86
-10
lines changed

1 file changed

+86
-10
lines changed

.gitignore

+86-10
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,87 @@
1-
/bin/
2-
.classpath
3-
.project
4-
/.settings/
1+
# Git
2+
*.orig
3+
!.gitignore
4+
/.settings/
5+
6+
# Windows
7+
Thumbs.db
8+
ehthumbs.db
9+
ehthumbs_vista.db
10+
*.stackdump
11+
[Dd]esktop.ini
12+
$RECYCLE.BIN/
13+
*.lnk
14+
15+
# Linux
16+
*~
17+
.fuse_hidden*
18+
.directory
19+
.Trash-*
20+
.nfs*
21+
22+
# MacOS
23+
.DS_Store
24+
.AppleDouble
25+
.LSOverride
26+
._*
27+
28+
# Java
29+
*.class
30+
*.log
31+
*.ctxt
32+
.mtj.tmp/
33+
*.jar
34+
*.war
35+
*.nar
36+
*.ear
37+
hs_err_pid*
38+
39+
# Maven
40+
target/
41+
pom.xml.tag
42+
pom.xml.releaseBackup
43+
pom.xml.versionsBackup
44+
pom.xml.next
45+
release.properties
46+
dependency-reduced-pom.xml
47+
buildNumber.properties
48+
49+
# Intellij
550
*.iml
6-
/target
7-
/.DS_Store
8-
/.idea
9-
/database/
10-
/.gitignore
11-
/dependency-reduced-pom.xml
51+
*.java___jb_tmp___
52+
.idea/*
53+
*.ipr
54+
*.iws
55+
/out/
56+
.idea_modules/
57+
58+
# Eclipse
59+
*.pydevproject
60+
.metadata
61+
.gradle
62+
bin/
63+
tmp/
64+
*.tmp
65+
*.bak
66+
*.swp
67+
*~.nib
68+
local.properties
69+
.settings/
70+
.loadpath
71+
.project
72+
.externalToolBuilders/
73+
*.launch
74+
.cproject
75+
.classpath
76+
.buildpath
77+
.target
78+
79+
# NetBeans
80+
nbproject/private/
81+
build/
82+
nbbuild/
83+
dist/
84+
nbdist/
85+
nbactions.xml
86+
nb-configuration.xml
87+
.nb-gradle/

0 commit comments

Comments
 (0)