mirror of
https://github.com/HistacomUnity/Histacom2-old.git
synced 2025-01-22 17:12:56 -05:00
eef1e2b945
The gitignore has been improved to ignore the following: - IDE configuration for Visual Studio, VSCode, and Rider - OS files for macOS, Linux, and Windows The gitattributes has been improved to properly diff the following: - Normalise line endings - Common Files - .md, .png, etc - C# Files - Visual Studio Files
65 lines
1.5 KiB
Text
65 lines
1.5 KiB
Text
# Normalise line endings
|
|
* text=auto
|
|
|
|
# Common Settings
|
|
# https://github.com/alexkaratarakis/gitattributes/blob/master/Common.gitattributes
|
|
# - Documents
|
|
*.doc diff=astextplain
|
|
*.DOC diff=astextplain
|
|
*.docx diff=astextplain
|
|
*.DOCX diff=astextplain
|
|
*.dot diff=astextplain
|
|
*.DOT diff=astextplain
|
|
*.pdf diff=astextplain
|
|
*.PDF diff=astextplain
|
|
*.rtf diff=astextplain
|
|
*.RTF diff=astextplain
|
|
*.md text
|
|
*.adoc text
|
|
*.textile text
|
|
*.mustache text
|
|
*.csv text
|
|
*.tab text
|
|
*.tsv text
|
|
*.sql text
|
|
|
|
# - Graphics
|
|
*.png binary
|
|
*.jpg binary
|
|
*.jpeg binary
|
|
*.gif binary
|
|
*.tif binary
|
|
*.tiff binary
|
|
*.ico binary
|
|
# Might want to treat svg as text
|
|
*.svg binary
|
|
*.eps binary
|
|
|
|
# C# Settings
|
|
# https://github.com/alexkaratarakis/gitattributes/blob/master/CSharp.gitattributes
|
|
*.cs diff=csharp
|
|
|
|
# Visual Studio Settings
|
|
# https://github.com/alexkaratarakis/gitattributes/blob/master/VisualStudio.gitattributes
|
|
*.sln text eol=crlf
|
|
*.csproj text eol=crlf
|
|
*.vbproj text eol=crlf
|
|
*.vcxproj text eol=crlf
|
|
*.vcproj text eol=crlf
|
|
*.dbproj text eol=crlf
|
|
*.fsproj text eol=crlf
|
|
*.lsproj text eol=crlf
|
|
*.wixproj text eol=crlf
|
|
*.modelproj text eol=crlf
|
|
*.sqlproj text eol=crlf
|
|
*.wmaproj text eol=crlf
|
|
|
|
*.xproj text eol=crlf
|
|
*.props text eol=crlf
|
|
*.filters text eol=crlf
|
|
*.vcxitems text eol=crlf
|
|
|
|
# Extra Settings
|
|
*.dll binary
|
|
*.lib binary
|
|
*.exe binary
|