Skip to content

Commit 8ada035

Browse files
committed
Added .gitignore
1 parent 0eac030 commit 8ada035

1 file changed

Lines changed: 99 additions & 0 deletions

File tree

.gitignore

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
# -----------------------------------------------------------------------------
2+
# Compiled sources
3+
# -----------------------------------------------------------------------------
4+
*.com
5+
*.class
6+
*.dll
7+
*.exe
8+
*.o
9+
*.so
10+
11+
# -----------------------------------------------------------------------------
12+
# Packages and archives
13+
# -----------------------------------------------------------------------------
14+
# It's better to unpack these files and commit the raw source
15+
# git has its own built in compression methods.
16+
# *.7z
17+
# *.dmg
18+
# *.gz
19+
# *.iso
20+
# *.jar
21+
# *.rar
22+
# *.tar
23+
# *.zip
24+
25+
# -----------------------------------------------------------------------------
26+
# Logs and databases
27+
# -----------------------------------------------------------------------------
28+
*.log
29+
# *.sql - we need to commit raw SQL for test database creation
30+
*.sqlite
31+
*.tlog
32+
*.epoch
33+
*.swp
34+
*.hprof
35+
*.hprof.index
36+
*~
37+
38+
# -----------------------------------------------------------------------------
39+
# OS generated files
40+
# -----------------------------------------------------------------------------
41+
.DS_Store*
42+
ehthumbs.db
43+
Icon?
44+
Thumbs.db
45+
46+
# -----------------------------------------------------------------------------
47+
# Maven generated files
48+
# -----------------------------------------------------------------------------
49+
target/
50+
*/target/
51+
out/
52+
53+
# -----------------------------------------------------------------------------
54+
# IntelliJ IDEA
55+
# -----------------------------------------------------------------------------
56+
# Not safe to share any of this across different IDEA major versions. Use the POMs.
57+
*.iml
58+
*.iws
59+
*.releaseBackup
60+
61+
.idea
62+
.idea/.name
63+
.idea/artifacts/
64+
.idea/workspace.xml
65+
.idea/dataSources.xml
66+
.idea/sqlDataSources.xml
67+
.idea/dynamic.xml
68+
.idea/compiler.xml
69+
.idea/misc.xml
70+
.idea/tasks.xml
71+
.idea/uiDesigner.xml
72+
.idea/libraries/*
73+
.idea/dictionaries/*
74+
.idea/modules.xml
75+
.idea/scopes/*
76+
77+
# .idea/inspectionProfiles/*
78+
79+
atlassian-ide-plugin.xml
80+
81+
# -----------------------------------------------------------------------------
82+
# Eclipse files
83+
# -----------------------------------------------------------------------------
84+
.classpath
85+
.project
86+
.settings
87+
.cache
88+
89+
# -----------------------------------------------------------------------------
90+
# Netbeans files
91+
# -----------------------------------------------------------------------------
92+
nb-configuration.xml
93+
*.orig
94+
95+
# -----------------------------------------------------------------------------
96+
# GPG signing files
97+
# -----------------------------------------------------------------------------
98+
*.asc
99+
*.versionsBackup

0 commit comments

Comments
 (0)