Skip to content

Commit 59d65fb

Browse files
committed
Add a .gitignore file
Hides build artifacts from GIT in this older version.
1 parent 99ec779 commit 59d65fb

File tree

1 file changed

+126
-0
lines changed

1 file changed

+126
-0
lines changed

.gitignore

Lines changed: 126 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
### JetBrains template
2+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
3+
4+
*.iml
5+
6+
## Directory-based project format:
7+
.idea/
8+
# if you remove the above rule, at least ignore the following:
9+
10+
# User-specific stuff:
11+
# .idea/workspace.xml
12+
# .idea/tasks.xml
13+
# .idea/dictionaries
14+
15+
# Sensitive or high-churn files:
16+
# .idea/dataSources.ids
17+
# .idea/dataSources.xml
18+
# .idea/sqlDataSources.xml
19+
# .idea/dynamic.xml
20+
# .idea/uiDesigner.xml
21+
22+
# Gradle:
23+
# .idea/gradle.xml
24+
# .idea/libraries
25+
26+
# Mongo Explorer plugin:
27+
# .idea/mongoSettings.xml
28+
29+
## File-based project format:
30+
*.ipr
31+
*.iws
32+
33+
## Plugin-specific files:
34+
35+
# IntelliJ
36+
/out/
37+
38+
# mpeltonen/sbt-idea plugin
39+
.idea_modules/
40+
41+
# JIRA plugin
42+
atlassian-ide-plugin.xml
43+
44+
# Clover plugin
45+
.clover/
46+
47+
# Crashlytics plugin (for Android Studio and IntelliJ)
48+
com_crashlytics_export_strings.xml
49+
crashlytics.properties
50+
crashlytics-build.properties
51+
### NetBeans template
52+
nbproject/private/
53+
build/
54+
nbbuild/
55+
dist/
56+
nbdist/
57+
nbactions.xml
58+
nb-configuration.xml
59+
.nb-gradle/
60+
### Maven template
61+
target/
62+
pom.xml.tag
63+
pom.xml.releaseBackup
64+
pom.xml.versionsBackup
65+
pom.xml.next
66+
release.properties
67+
dependency-reduced-pom.xml
68+
buildNumber.properties
69+
.mvn/timing.properties
70+
### Java template
71+
*.class
72+
73+
# Mobile Tools for Java (J2ME)
74+
.mtj.tmp/
75+
76+
# Package Files #
77+
*.jar
78+
*.war
79+
*.ear
80+
81+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
82+
hs_err_pid*
83+
### Eclipse template
84+
*.pydevproject
85+
.metadata
86+
.gradle
87+
bin/
88+
tmp/
89+
*.tmp
90+
*.bak
91+
*.swp
92+
*~.nib
93+
local.properties
94+
.settings/
95+
.loadpath
96+
97+
# Eclipse Core
98+
.project
99+
100+
# External tool builders
101+
.externalToolBuilders/
102+
103+
# Locally stored "Eclipse launch configurations"
104+
*.launch
105+
106+
# CDT-specific
107+
.cproject
108+
109+
# JDT-specific (Eclipse Java Development Tools)
110+
.classpath
111+
112+
# Java annotation processor (APT)
113+
.factorypath
114+
115+
# PDT-specific
116+
.buildpath
117+
118+
# sbteclipse plugin
119+
.target
120+
121+
# TeXlipse plugin
122+
.texlipse
123+
124+
# Created by .ignore support plugin (hsz.mobi)
125+
126+
target.db

0 commit comments

Comments
 (0)