Skip to content

Commit

Permalink
Updating gitignore and addting gitattributes
Browse files Browse the repository at this point in the history
  • Loading branch information
peschkaj committed May 21, 2014
1 parent 3d598f4 commit 3ec0d0f
Show file tree
Hide file tree
Showing 2 changed files with 95 additions and 0 deletions.
63 changes: 63 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# Force this repository to use Windows line endings
* text=crlf

# Custom for Visual Studio
*.ascx text
*.cmd text
*.coffee text
*.config text
*.cs text diff=csharp
*.csproj text merge=union
*.css text
*.cshtml text
*.htm text
*.html text
*.js text
*.msbuild text
*.resx text merge=union
*.ruleset text
*.Stylecop text
*.targets text
*.tt text
*.txt text
*.vb text
*.vbhtml text
*.vbproj text merge=union
*.xml text
*.xunit text
*.sln text eol=crlf merge=union

# STANDARD TO MSYSGIT
*.DOC DIFF=ASTEXTPLAIN
*.DOC DIFF=ASTEXTPLAIN
*.DOCX DIFF=ASTEXTPLAIN
*.DOCX DIFF=ASTEXTPLAIN
*.XLS binary
*.XLS binary
*.XLSX binary
*.XLSX binary
*.PPT binary
*.PPTX binary
*.DOT DIFF=ASTEXTPLAIN
*.DOT DIFF=ASTEXTPLAIN
*.PDF DIFF=ASTEXTPLAIN
*.PDF DIFF=ASTEXTPLAIN
*.RTF DIFF=ASTEXTPLAIN
*.RTF DIFF=ASTEXTPLAIN

*.JPG BINARY
*.PNG BINARY
*.GIF BINARY
*.ICO BINARY
*.BMP BINARY
*.MDF BINARY
*.LDF BINARY

# T-SQL files
*.sql eol=crlf merge=union

# prevent unwanted files from bloating the zip distribution package
BlitzBuilder/ export-ignore
sp_AskBrent/ export-ignore
sp_Blitz/ export-ignore
sp_BlitzIndex/ export-ignore
32 changes: 32 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,23 @@
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
.DS_Store

# User-specific files
*.suo
*.user
*.sln.docstates
bin
Bin
BIN
obj
Obj
OBJ
debug
Debug
DEBUG
release
Release
RELEASE

# Build results
[Dd]ebug/
Expand Down Expand Up @@ -34,6 +47,8 @@ dlldata.c
*_i.h
*.ilk
*.meta
*.orig
*.ncb
*.obj
*.pch
*.pdb
Expand All @@ -50,6 +65,13 @@ dlldata.c
*.vspscc
*.vssscc
.builds
*.suo
*.user
*.swp
*.*~
_Re*
\.DS_Store
*.userprefs
*.pidb
*.svclog
*.scc
Expand Down Expand Up @@ -88,19 +110,28 @@ _ReSharper*/
_TeamCity*

# DotCover is a Code Coverage Tool
*.zip
test-results/*
*.dotCover
*.nupkg
test-results

# NCrunch
*.ncrunch*
*.ncrunchproject
*.ncrunchsolution
_NCrunch_*
.*crunch*.local.xml

# MightyMoose
*.mm.*
AutoTest.Net/
output.rtf

# Web workbench (sass)
.sass-cache/
*.zip
~*.*

# Installshield output folder
[Ee]xpress/
Expand Down Expand Up @@ -172,3 +203,4 @@ UpgradeLog*.htm

# Microsoft Fakes
FakesAssemblies/
Thumbs.db

0 comments on commit 3ec0d0f

Please sign in to comment.