Skip to content

Commit d3ca2c1

Browse files
committed
Added .gitattributes & .gitignore
1 parent 38436bf commit d3ca2c1

File tree

2 files changed

+268
-0
lines changed

2 files changed

+268
-0
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

.gitignore

Lines changed: 266 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,266 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### NetBeans template
3+
nbproject/private/
4+
build/
5+
nbbuild/
6+
dist/
7+
nbdist/
8+
.nb-gradle/
9+
### DartEditor template
10+
.project
11+
.buildlog
12+
### Java template
13+
# Compiled class file
14+
# Log file
15+
*.log
16+
17+
# BlueJ files
18+
*.ctxt
19+
20+
# Mobile Tools for Java (J2ME)
21+
.mtj.tmp/
22+
23+
# Package Files #
24+
*.war
25+
*.ear
26+
*.zip
27+
*.tar.gz
28+
*.rar
29+
30+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
31+
hs_err_pid*
32+
### JetBrains template
33+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
34+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
35+
36+
# User-specific stuff:
37+
.idea/**/workspace.xml
38+
.idea/**/tasks.xml
39+
#.idea/dictionaries
40+
41+
# Sensitive or high-churn files:
42+
.idea/**/dataSources/
43+
.idea/**/dataSources.ids
44+
.idea/**/dataSources.local.xml
45+
.idea/**/sqlDataSources.xml
46+
.idea/**/dynamic.xml
47+
.idea/**/uiDesigner.xml
48+
49+
# Gradle:
50+
.idea/**/gradle.xml
51+
.idea/**/libraries
52+
53+
# CMake
54+
cmake-build-debug/
55+
cmake-build-release/
56+
57+
# Mongo Explorer plugin:
58+
.idea/**/mongoSettings.xml
59+
60+
## File-based project format:
61+
*.iws
62+
63+
## Plugin-specific files:
64+
65+
# IntelliJ
66+
out/
67+
68+
# mpeltonen/sbt-idea plugin
69+
.idea_modules/
70+
71+
# JIRA plugin
72+
atlassian-ide-plugin.xml
73+
74+
# Cursive Clojure plugin
75+
.idea/replstate.xml
76+
77+
# Crashlytics plugin (for Android Studio and IntelliJ)
78+
com_crashlytics_export_strings.xml
79+
crashlytics.properties
80+
crashlytics-build.properties
81+
fabric.properties
82+
### macOS template
83+
# General
84+
.DS_Store
85+
.AppleDouble
86+
.LSOverride
87+
88+
# Icon must end with two \r
89+
Icon
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+
### Maven template
110+
target/
111+
pom.xml.tag
112+
pom.xml.releaseBackup
113+
pom.xml.versionsBackup
114+
pom.xml.next
115+
release.properties
116+
dependency-reduced-pom.xml
117+
buildNumber.properties
118+
.mvn/timing.properties
119+
120+
# Avoid ignoring Maven wrapper jar file (.jar files are usually ignored)
121+
!/.mvn/wrapper/maven-wrapper.jar
122+
### Linux template
123+
*~
124+
125+
# temporary files which can be created if a process still has a handle open of a deleted file
126+
.fuse_hidden*
127+
128+
# KDE directory preferences
129+
.directory
130+
131+
# Linux trash folder which might appear on any partition or disk
132+
.Trash-*
133+
134+
# .nfs files are created when an open file is removed but is still being accessed
135+
.nfs*
136+
### SlickEdit template
137+
# SlickEdit workspace and project files are ignored by default because
138+
# typically they are considered to be developer-specific and not part of a
139+
# project.
140+
*.vpw
141+
*.vpj
142+
143+
# SlickEdit workspace history and tag files always contain user-specific
144+
# data so they should not be stored in a repository.
145+
*.vpwhistu
146+
*.vpwhist
147+
*.vtg
148+
### NotepadPP template
149+
# Notepad++ backups #
150+
*.bak
151+
### CVS template
152+
/CVS/*
153+
**/CVS/*
154+
.cvsignore
155+
*/.cvsignore
156+
### Eclipse template
157+
158+
.metadata
159+
bin/
160+
tmp/
161+
*.tmp
162+
*.swp
163+
*~.nib
164+
local.properties
165+
.settings/
166+
.loadpath
167+
.recommenders
168+
169+
# External tool builders
170+
.externalToolBuilders/
171+
172+
# Locally stored "Eclipse launch configurations"
173+
*.launch
174+
175+
# PyDev specific (Python IDE for Eclipse)
176+
*.pydevproject
177+
178+
# CDT-specific (C/C++ Development Tooling)
179+
.cproject
180+
181+
# CDT- autotools
182+
.autotools
183+
184+
# Java annotation processor (APT)
185+
.factorypath
186+
187+
# PDT-specific (PHP Development Tools)
188+
.buildpath
189+
190+
# sbteclipse plugin
191+
.target
192+
193+
# Tern plugin
194+
.tern-project
195+
196+
# TeXlipse plugin
197+
.texlipse
198+
199+
# STS (Spring Tool Suite)
200+
.springBeans
201+
202+
# Code Recommenders
203+
.recommenders/
204+
205+
# Scala IDE specific (Scala & Java development for Eclipse)
206+
.cache-main
207+
.scala_dependencies
208+
.worksheet
209+
### SublimeText template
210+
# Cache files for Sublime Text
211+
*.tmlanguage.cache
212+
*.tmPreferences.cache
213+
*.stTheme.cache
214+
215+
# Workspace files are user-specific
216+
*.sublime-workspace
217+
218+
# Project files should be checked into the repository, unless a significant
219+
# proportion of contributors will probably not be using Sublime Text
220+
# *.sublime-project
221+
222+
# SFTP configuration file
223+
sftp-config.json
224+
225+
# Package control specific files
226+
Package Control.last-run
227+
Package Control.ca-list
228+
Package Control.ca-bundle
229+
Package Control.system-ca-bundle
230+
Package Control.cache/
231+
Package Control.ca-certs/
232+
Package Control.merged-ca-bundle
233+
Package Control.user-ca-bundle
234+
oscrypto-ca-bundle.crt
235+
bh_unicode_properties.cache
236+
237+
# Sublime-github package stores a github token in this file
238+
# https://packagecontrol.io/packages/sublime-github
239+
GitHub.sublime-settings
240+
### Windows template
241+
# Windows thumbnail cache files
242+
Thumbs.db
243+
ehthumbs.db
244+
ehthumbs_vista.db
245+
246+
# Dump file
247+
*.stackdump
248+
249+
# Folder config file
250+
[Dd]esktop.ini
251+
252+
# Recycle Bin used on file shares
253+
$RECYCLE.BIN/
254+
255+
# Windows Installer files
256+
*.cab
257+
*.msi
258+
*.msm
259+
*.msp
260+
261+
# Windows shortcuts
262+
*.lnk
263+
### Redis template
264+
# Ignore redis binary dump (dump.rdb) files
265+
266+
*.rdb

0 commit comments

Comments
 (0)