Skip to content

Commit 3ec0d0f

Browse files
committed
Updating gitignore and addting gitattributes
1 parent 3d598f4 commit 3ec0d0f

File tree

2 files changed

+95
-0
lines changed

2 files changed

+95
-0
lines changed

.gitattributes

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# Force this repository to use Windows line endings
2+
* text=crlf
3+
4+
# Custom for Visual Studio
5+
*.ascx text
6+
*.cmd text
7+
*.coffee text
8+
*.config text
9+
*.cs text diff=csharp
10+
*.csproj text merge=union
11+
*.css text
12+
*.cshtml text
13+
*.htm text
14+
*.html text
15+
*.js text
16+
*.msbuild text
17+
*.resx text merge=union
18+
*.ruleset text
19+
*.Stylecop text
20+
*.targets text
21+
*.tt text
22+
*.txt text
23+
*.vb text
24+
*.vbhtml text
25+
*.vbproj text merge=union
26+
*.xml text
27+
*.xunit text
28+
*.sln text eol=crlf merge=union
29+
30+
# STANDARD TO MSYSGIT
31+
*.DOC DIFF=ASTEXTPLAIN
32+
*.DOC DIFF=ASTEXTPLAIN
33+
*.DOCX DIFF=ASTEXTPLAIN
34+
*.DOCX DIFF=ASTEXTPLAIN
35+
*.XLS binary
36+
*.XLS binary
37+
*.XLSX binary
38+
*.XLSX binary
39+
*.PPT binary
40+
*.PPTX binary
41+
*.DOT DIFF=ASTEXTPLAIN
42+
*.DOT DIFF=ASTEXTPLAIN
43+
*.PDF DIFF=ASTEXTPLAIN
44+
*.PDF DIFF=ASTEXTPLAIN
45+
*.RTF DIFF=ASTEXTPLAIN
46+
*.RTF DIFF=ASTEXTPLAIN
47+
48+
*.JPG BINARY
49+
*.PNG BINARY
50+
*.GIF BINARY
51+
*.ICO BINARY
52+
*.BMP BINARY
53+
*.MDF BINARY
54+
*.LDF BINARY
55+
56+
# T-SQL files
57+
*.sql eol=crlf merge=union
58+
59+
# prevent unwanted files from bloating the zip distribution package
60+
BlitzBuilder/ export-ignore
61+
sp_AskBrent/ export-ignore
62+
sp_Blitz/ export-ignore
63+
sp_BlitzIndex/ export-ignore

.gitignore

+32
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,23 @@
11
## Ignore Visual Studio temporary files, build results, and
22
## files generated by popular Visual Studio add-ons.
3+
.DS_Store
34

45
# User-specific files
56
*.suo
67
*.user
78
*.sln.docstates
9+
bin
10+
Bin
11+
BIN
12+
obj
13+
Obj
14+
OBJ
15+
debug
16+
Debug
17+
DEBUG
18+
release
19+
Release
20+
RELEASE
821

922
# Build results
1023
[Dd]ebug/
@@ -34,6 +47,8 @@ dlldata.c
3447
*_i.h
3548
*.ilk
3649
*.meta
50+
*.orig
51+
*.ncb
3752
*.obj
3853
*.pch
3954
*.pdb
@@ -50,6 +65,13 @@ dlldata.c
5065
*.vspscc
5166
*.vssscc
5267
.builds
68+
*.suo
69+
*.user
70+
*.swp
71+
*.*~
72+
_Re*
73+
\.DS_Store
74+
*.userprefs
5375
*.pidb
5476
*.svclog
5577
*.scc
@@ -88,19 +110,28 @@ _ReSharper*/
88110
_TeamCity*
89111

90112
# DotCover is a Code Coverage Tool
113+
*.zip
114+
test-results/*
91115
*.dotCover
116+
*.nupkg
117+
test-results
92118

93119
# NCrunch
94120
*.ncrunch*
121+
*.ncrunchproject
122+
*.ncrunchsolution
95123
_NCrunch_*
96124
.*crunch*.local.xml
97125

98126
# MightyMoose
99127
*.mm.*
100128
AutoTest.Net/
129+
output.rtf
101130

102131
# Web workbench (sass)
103132
.sass-cache/
133+
*.zip
134+
~*.*
104135

105136
# Installshield output folder
106137
[Ee]xpress/
@@ -172,3 +203,4 @@ UpgradeLog*.htm
172203

173204
# Microsoft Fakes
174205
FakesAssemblies/
206+
Thumbs.db

0 commit comments

Comments
 (0)