forked from AutoFixture/AutoFixture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
37 lines (31 loc) · 804 Bytes
/
.gitattributes
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
29
30
31
32
33
34
35
36
# Enable automatic line ending conversion for text files on checkout and commit.
# For all extensions that are not being explicitly defined below git will try to guess
# whether file contains text and if so, will convert the line endings.
* text=auto
# Define all the file extensions for which we should always apply line ending covnersion
*.cs text diff=csharp
*.fs text
*.fsx text
*.config text
*.xml text
*.sln text
*.csproj text
*.fsproj text
*.props text
*.ruleset text
*.md text
*.txt text
*.yml text
*.pp text
*.nuspec text
*.bat text
*.cmd text
*.sh text
# Define all the binary files that should not be touched
*.dll binary
*.exe binary
*.pdb binary
*.png binary
*.snk binary
*.sigdata binary
*.optdata binary