Skip to content

Commit 5755530

Browse files
committed
[Git] Configure what files and folders must be excluded from the version control.
1 parent 4166792 commit 5755530

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.gitignore

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
###################
2+
# Compiled source #
3+
###################
4+
*.class
5+
bin/
6+
build/
7+
dist/
8+
out/
9+
target/
10+
*.versionsBackup
11+
12+
######################
13+
# OS generated files #
14+
######################
15+
.DS_Store
16+
thumbs.db
17+
18+
#######################
19+
# IDE generated files #
20+
#######################
21+
.project
22+
.classpath
23+
.settings/
24+
.idea/
25+
*.iml
26+
*.sw*
27+
28+
#######
29+
# SCM #
30+
#######
31+
.svn

0 commit comments

Comments
 (0)