Files
MonoGame.Extended/.gitattributes
T
Christopher Whitley 8b991b8041 Updated .gitattributes
2024-05-19 15:25:36 -04:00

45 lines
1.8 KiB
Plaintext

################################################################################
### Default behavior
### - Treat as text
### - Normalize to Unix-style line endings
################################################################################
* text eol=lf
################################################################################
### C# source file behavior
### - Treat as text
### - Normalize to Unix-style line endings
### - Diff as csharp
################################################################################
*.cs text eol=lf diff=csharp
################################################################################
### csproj file behavior
### - Treat as text
### - Normalize to Unix-style line endings
### - Use a union merge when resolving conflicts
################################################################################
.csproj text eol=lf merge=union
################################################################################
### sln file behavior
### - Treat as text
### - Normalize to Windows-style line endings
### - Use a union merge when resolving conflicts
################################################################################
*.sln text eol=crlf merge=union
################################################################################
### imageln file behavior
### - Treat as binary
### - Normalize to Windows-style line endings
### - Use a union merge when resolving conflicts
################################################################################
*.bmp binary
*.gif binary
*.ico binary
*.jpg binary
*.jpeg binary
*.png binary
*.webp binary