Skip to content

Commit e1e98dc

Browse files
committed
adding git ignore and attributes files
1 parent 712268b commit e1e98dc

2 files changed

Lines changed: 176 additions & 0 deletions

File tree

.gitattributes

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

.gitignore

Lines changed: 159 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,159 @@
1+
#################
2+
## Visual Studio
3+
#################
4+
5+
## Ignore Visual Studio temporary files, build results, and
6+
## files generated by popular Visual Studio add-ons.
7+
8+
# User-specific files
9+
*.suo
10+
*.user
11+
*.sln.docstates
12+
13+
# Build results
14+
15+
[Dd]ebug/
16+
[Rr]elease/
17+
x64/
18+
build/
19+
[Bb]in/
20+
[Oo]bj/
21+
[Pp]ackage/
22+
23+
# MSTest test Results
24+
[Tt]est[Rr]esult*/
25+
[Bb]uild[Ll]og.*
26+
27+
*_i.c
28+
*_p.c
29+
*.ilk
30+
*.meta
31+
*.obj
32+
*.pch
33+
*.pdb
34+
*.pgc
35+
*.pgd
36+
*.rsp
37+
*.sbr
38+
*.tlb
39+
*.tli
40+
*.tlh
41+
*.tmp
42+
*.tmp_proj
43+
*.log
44+
*.vspscc
45+
*.vssscc
46+
.builds
47+
*.pidb
48+
*.log
49+
*.scc
50+
51+
# Visual C++ cache files
52+
ipch/
53+
*.aps
54+
*.ncb
55+
*.opensdf
56+
*.sdf
57+
*.cachefile
58+
59+
# Visual Studio profiler
60+
*.psess
61+
*.vsp
62+
*.vspx
63+
64+
# Guidance Automation Toolkit
65+
*.gpState
66+
67+
# ReSharper is a .NET coding add-in
68+
_ReSharper*/
69+
*.[Rr]e[Ss]harper
70+
71+
# TeamCity is a build add-in
72+
_TeamCity*
73+
74+
# DotCover is a Code Coverage Tool
75+
*.dotCover
76+
77+
# NCrunch
78+
*.ncrunch*
79+
.*crunch*.local.xml
80+
81+
# Installshield output folder
82+
[Ee]xpress/
83+
84+
# DocProject is a documentation generator add-in
85+
DocProject/buildhelp/
86+
DocProject/Help/*.HxT
87+
DocProject/Help/*.HxC
88+
DocProject/Help/*.hhc
89+
DocProject/Help/*.hhk
90+
DocProject/Help/*.hhp
91+
DocProject/Help/Html2
92+
DocProject/Help/html
93+
94+
# Click-Once directory
95+
publish/
96+
97+
# Publish Web Output
98+
*.Publish.xml
99+
*.pubxml
100+
*.publishproj
101+
102+
# NuGet Packages Directory
103+
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
104+
packages/
105+
106+
# private libs
107+
libs/
108+
109+
# Windows Azure Build Output
110+
csx
111+
*.build.csdef
112+
113+
# Windows Store app package directory
114+
AppPackages/
115+
116+
# Others
117+
[Ll]ib/
118+
sql/
119+
*.Cache
120+
ClientBin/
121+
[Ss]tyle[Cc]op.*
122+
~$*
123+
*~
124+
*.dbmdl
125+
*.[Pp]ublish.xml
126+
*.pfx
127+
*.publishsettings
128+
[Tt]emp/
129+
130+
# RIA/Silverlight projects
131+
Generated_Code/
132+
133+
# Backup & report files from converting an old project file to a newer
134+
# Visual Studio version. Backup files are not needed, because we have git ;-)
135+
_UpgradeReport_Files/
136+
Backup*/
137+
UpgradeLog*.XML
138+
UpgradeLog*.htm
139+
140+
# SQL Server files
141+
App_Data/*.mdf
142+
App_Data/*.ldf
143+
144+
#############
145+
## Windows detritus
146+
#############
147+
148+
# Windows image file caches
149+
Thumbs.db
150+
ehthumbs.db
151+
152+
# Folder config file
153+
Desktop.ini
154+
155+
# Recycle Bin used on file shares
156+
$RECYCLE.BIN/
157+
158+
# Mac crap
159+
.DS_Store

0 commit comments

Comments
 (0)