Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 350 Bytes

gitattributes.md

File metadata and controls

11 lines (8 loc) · 350 Bytes

.gitattributes for C#

The first line of .gitattributes file should be as indicated here.

The .gitattributes file for a C# repository should also include these lines, which improve git handling of C# (and related) files in some situations:

*.cs text diff=csharp
*.csproj text merge=union
*.sln text merge=union