Skip to content

Commit 04dd874

Browse files
authored
Create .gitignore
1 parent 88c2afe commit 04dd874

File tree

1 file changed

+115
-0
lines changed

1 file changed

+115
-0
lines changed

.gitignore

Lines changed: 115 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Java template
3+
# Compiled class file
4+
*.class
5+
6+
# Log file
7+
*.log
8+
9+
# BlueJ files
10+
*.ctxt
11+
12+
# Mobile Tools for Java (J2ME)
13+
.mtj.tmp/
14+
15+
# Package Files #
16+
*.jar
17+
*.war
18+
*.ear
19+
*.zip
20+
*.tar.gz
21+
*.rar
22+
23+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
24+
hs_err_pid*
25+
### Eclipse template
26+
27+
.metadata
28+
bin/
29+
tmp/
30+
*.tmp
31+
*.bak
32+
*.swp
33+
*~.nib
34+
local.properties
35+
.settings/
36+
.loadpath
37+
.recommenders
38+
39+
# Eclipse Core
40+
.project
41+
42+
# External tool builders
43+
.externalToolBuilders/
44+
45+
# Locally stored "Eclipse launch configurations"
46+
*.launch
47+
48+
# PyDev specific (Python IDE for Eclipse)
49+
*.pydevproject
50+
51+
# CDT-specific (C/C++ Development Tooling)
52+
.cproject
53+
54+
# JDT-specific (Eclipse Java Development Tools)
55+
.classpath
56+
57+
# Java annotation processor (APT)
58+
.factorypath
59+
60+
# PDT-specific (PHP Development Tools)
61+
.buildpath
62+
63+
# sbteclipse plugin
64+
.target
65+
66+
# Tern plugin
67+
.tern-project
68+
69+
# TeXlipse plugin
70+
.texlipse
71+
72+
# STS (Spring Tool Suite)
73+
.springBeans
74+
75+
# Code Recommenders
76+
.recommenders/
77+
78+
# Scala IDE specific (Scala & Java development for Eclipse)
79+
.cache-main
80+
.scala_dependencies
81+
.worksheet
82+
### macOS template
83+
*.DS_Store
84+
.AppleDouble
85+
.LSOverride
86+
87+
# Icon must end with two \r
88+
Icon
89+
90+
91+
# Thumbnails
92+
._*
93+
94+
# Files that might appear in the root of a volume
95+
.DocumentRevisions-V100
96+
.fseventsd
97+
.Spotlight-V100
98+
.TemporaryItems
99+
.Trashes
100+
.VolumeIcon.icns
101+
.com.apple.timemachine.donotpresent
102+
103+
# Directories potentially created on remote AFP share
104+
.AppleDB
105+
.AppleDesktop
106+
Network Trash Folder
107+
Temporary Items
108+
.apdisk
109+
110+
#Intellij files
111+
.idea
112+
*.iml
113+
114+
#maven build target
115+
target/

0 commit comments

Comments
 (0)