1
0
mirror of https://github.com/gitattributes/gitattributes.git synced 2025-01-22 00:08:52 -05:00

Compare commits

...

3 Commits

Author SHA1 Message Date
Ali Baghernejad
dca328d65a
Merge c8dc520973 into c9ac80d722 2024-10-23 12:38:50 -06:00
Dawid Niedźwiedzki
c9ac80d722 Removes problematic wildcard from .blend files
Removes wildcard from .blend files, that caused git to treat .blend.meta as files that are supposed to be placed in LFS, while it should've been treated as a YAML file.
2024-10-21 19:25:34 -07:00
Ali Baghernejad
c8dc520973
Add more behaviors for SQL/SQL server database projects.
Add more behaviors for SQL/SQL server database projects. to automatically normalize line endings.
2024-07-01 19:43:34 +03:30
2 changed files with 28 additions and 2 deletions

View File

@ -68,7 +68,7 @@ Assets/Plugins/** linguist-vendored
# 3D models
*.3dm lfs
*.3ds lfs
*.blend* lfs
*.blend lfs
*.c4d lfs
*.collada lfs
*.dae lfs

View File

@ -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