Skip to content

Commit 3e48c29

Browse files
committed
Git files
1 parent f6a39ba commit 3e48c29

File tree

2 files changed

+247
-0
lines changed

2 files changed

+247
-0
lines changed

.gitattributes

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Custom for Visual Studio
5+
*.cs diff=csharp
6+
*.sln merge=union
7+
*.csproj merge=union
8+
*.vbproj merge=union
9+
*.fsproj merge=union
10+
*.dbproj merge=union
11+
12+
# Standard to msysgit
13+
*.doc diff=astextplain
14+
*.DOC diff=astextplain
15+
*.docx diff=astextplain
16+
*.DOCX diff=astextplain
17+
*.dot diff=astextplain
18+
*.DOT diff=astextplain
19+
*.pdf diff=astextplain
20+
*.PDF diff=astextplain
21+
*.rtf diff=astextplain
22+
*.RTF diff=astextplain

.gitignore

Lines changed: 225 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,225 @@
1+
#################
2+
## Eclipse
3+
#################
4+
5+
*.pydevproject
6+
.project
7+
.metadata
8+
bin/
9+
tmp/
10+
*.tmp
11+
*.bak
12+
*.swp
13+
*~.nib
14+
local.properties
15+
.classpath
16+
.settings/
17+
.loadpath
18+
.idea
19+
20+
# External tool builders
21+
.externalToolBuilders/
22+
23+
# Locally stored "Eclipse launch configurations"
24+
*.launch
25+
26+
# CDT-specific
27+
.cproject
28+
29+
# PDT-specific
30+
.buildpath
31+
32+
33+
#################
34+
## Visual Studio
35+
#################
36+
37+
## Ignore Visual Studio temporary files, build results, and
38+
## files generated by popular Visual Studio add-ons.
39+
40+
# User-specific files
41+
*.suo
42+
*.user
43+
*.sln.docstates
44+
45+
# Build results
46+
47+
[Dd]ebug/
48+
[Rr]elease/
49+
x64/
50+
build/
51+
[Bb]in/
52+
[Oo]bj/
53+
54+
# MSTest test Results
55+
[Tt]est[Rr]esult*/
56+
[Bb]uild[Ll]og.*
57+
58+
*_i.c
59+
*_p.c
60+
*.ilk
61+
*.meta
62+
*.obj
63+
*.pch
64+
*.pdb
65+
*.pgc
66+
*.pgd
67+
*.rsp
68+
*.sbr
69+
*.tlb
70+
*.tli
71+
*.tlh
72+
*.tmp
73+
*.tmp_proj
74+
*.log
75+
*.vspscc
76+
*.vssscc
77+
.builds
78+
*.pidb
79+
*.log
80+
*.scc
81+
82+
# Visual C++ cache files
83+
ipch/
84+
*.aps
85+
*.ncb
86+
*.opensdf
87+
*.sdf
88+
*.cachefile
89+
90+
# Visual Studio profiler
91+
*.psess
92+
*.vsp
93+
*.vspx
94+
95+
# Guidance Automation Toolkit
96+
*.gpState
97+
98+
# ReSharper is a .NET coding add-in
99+
_ReSharper*/
100+
*.[Rr]e[Ss]harper
101+
102+
# TeamCity is a build add-in
103+
_TeamCity*
104+
105+
# DotCover is a Code Coverage Tool
106+
*.dotCover
107+
108+
# NCrunch
109+
*.ncrunch*
110+
.*crunch*.local.xml
111+
112+
# Installshield output folder
113+
[Ee]xpress/
114+
115+
# DocProject is a documentation generator add-in
116+
DocProject/buildhelp/
117+
DocProject/Help/*.HxT
118+
DocProject/Help/*.HxC
119+
DocProject/Help/*.hhc
120+
DocProject/Help/*.hhk
121+
DocProject/Help/*.hhp
122+
DocProject/Help/Html2
123+
DocProject/Help/html
124+
125+
# Click-Once directory
126+
publish/
127+
128+
# Publish Web Output
129+
*.Publish.xml
130+
*.pubxml
131+
132+
# NuGet Packages Directory
133+
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
134+
#packages/
135+
136+
# Windows Azure Build Output
137+
csx
138+
*.build.csdef
139+
140+
# Windows Store app package directory
141+
AppPackages/
142+
143+
# Others
144+
sql/
145+
*.Cache
146+
ClientBin/
147+
[Ss]tyle[Cc]op.*
148+
~$*
149+
*~
150+
*.dbmdl
151+
*.[Pp]ublish.xml
152+
*.pfx
153+
*.publishsettings
154+
155+
# RIA/Silverlight projects
156+
Generated_Code/
157+
158+
# Backup & report files from converting an old project file to a newer
159+
# Visual Studio version. Backup files are not needed, because we have git ;-)
160+
_UpgradeReport_Files/
161+
Backup*/
162+
UpgradeLog*.XML
163+
UpgradeLog*.htm
164+
165+
# SQL Server files
166+
App_Data/*.mdf
167+
App_Data/*.ldf
168+
169+
#############
170+
## Windows detritus
171+
#############
172+
173+
# Windows image file caches
174+
Thumbs.db
175+
ehthumbs.db
176+
177+
# Folder config file
178+
Desktop.ini
179+
180+
# Recycle Bin used on file shares
181+
$RECYCLE.BIN/
182+
183+
# Mac crap
184+
.DS_Store
185+
186+
187+
#############
188+
## Python
189+
#############
190+
191+
*.py[co]
192+
193+
# Packages
194+
*.egg
195+
*.egg-info
196+
dist/
197+
build/
198+
eggs/
199+
parts/
200+
var/
201+
sdist/
202+
develop-eggs/
203+
.installed.cfg
204+
205+
# Installer logs
206+
pip-log.txt
207+
208+
# Unit test / coverage reports
209+
.coverage
210+
.tox
211+
212+
#Translations
213+
*.mo
214+
215+
#Mr Developer
216+
.mr.developer.cfg
217+
Machine Learning Library/NeuralNetwork.iml
218+
NeuralNetwork.iml
219+
lib/weka-src.jar
220+
libblas3.dll
221+
libgcc_s_seh-1.dll
222+
libgfortran-3.dll
223+
liblapack3.dll
224+
libquadmath-0.dll
225+
src/META-INF/MANIFEST.MF

0 commit comments

Comments
 (0)