-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
28 lines (22 loc) · 796 Bytes
/
Copy path.gitattributes
File metadata and controls
28 lines (22 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# To force normalize the files in the working tree, execute:
# git add --renormalize .
# Unset line ending normalization for all files by default
# This enables "as is" check-ins
* -text
# Set dotnet source code files to be normalized.
# This prevents us from having mixed endings
*.cs text diff=csharp merge=csharp
*.csproj text
*.sln text
# Other source code we might encounter
*.md text diff=markdown merge=markdown
*.sh text
.editorconfig text
# allow git to normalize its own settings files
.gitignore text
.gitattributes text
# nuget configuration
nuget.config text
# Note: core.autocrlf will only affect files not listed here.
# This ought to amount to processing no files as we
# have the wildcard * specified at the top.