mirror of
https://github.com/gitattributes/gitattributes.git
synced 2025-01-22 00:08:52 -05:00
Compare commits
3 Commits
f806632070
...
dca328d65a
Author | SHA1 | Date | |
---|---|---|---|
|
dca328d65a | ||
|
c9ac80d722 | ||
|
c8dc520973 |
@ -68,7 +68,7 @@ Assets/Plugins/** linguist-vendored
|
||||
# 3D models
|
||||
*.3dm lfs
|
||||
*.3ds lfs
|
||||
*.blend* lfs
|
||||
*.blend lfs
|
||||
*.c4d lfs
|
||||
*.collada lfs
|
||||
*.dae lfs
|
||||
|
@ -1,4 +1,30 @@
|
||||
# Basic .gitattributes for sql files
|
||||
# Basic .gitattributes for SQL files
|
||||
|
||||
*.sql linguist-detectable=true
|
||||
*.sql linguist-language=sql
|
||||
|
||||
# Handle line endings automatically for files detected as text
|
||||
# and treat them as LF on check-in and CRLF when checked out.
|
||||
* text=auto eol=crlf
|
||||
|
||||
# SQL files should be detected as text.
|
||||
*.sql text eol=crlf
|
||||
|
||||
# Project and solution files
|
||||
*.sqlproj text eol=crlf
|
||||
*.sln text eol=crlf
|
||||
|
||||
# Pre and post-deployment scripts
|
||||
*PreDeployment.sql text eol=crlf
|
||||
*PostDeployment.sql text eol=crlf
|
||||
|
||||
# Model and schema files
|
||||
*.dbmdl text eol=crlf
|
||||
*.dbschema text eol=crlf
|
||||
|
||||
# DACPAC files should be treated as binary.
|
||||
*.dacpac binary
|
||||
|
||||
# Ignore files generated by SQL Server Management Studio (SSMS)
|
||||
*.jfm binary
|
||||
*.jtp binary
|
||||
|
Loading…
Reference in New Issue
Block a user