-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.gitattributes
67 lines (58 loc) · 1.48 KB
/
.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Set default text eol to Unix LF
* text=auto eol=lf
# Force crlf for Windows bat and cmd text files.
*.{cmd,[cC][mM][dD]} text eol=crlf
*.{bat,[bB][aA][tT]} text eol=crlf
# Force crlf for all Visual Studio text files.
*.sln text eol=crlf
*.csproj text eol=crlf
*.vbproj text eol=crlf
*.vcxproj text eol=crlf
*.vcproj text eol=crlf
*.dbproj text eol=crlf
*.fsproj text eol=crlf
*.lsproj text eol=crlf
*.wixproj text eol=crlf
*.modelproj text eol=crlf
*.sqlproj text eol=crlf
*.wmaproj text eol=crlf
*.xproj text eol=crlf
*.props text eol=crlf
*.filters text eol=crlf
*.vcxitems text eol=crlf
# Set image files as binary by default.
*.bmp binary
*.gif binary
*.jpg binary
*.jpeg binary
*.png binary
*.ico binary
*.icns binary
*.ai binary
# Set audio files as binary by default.
*.wav binary
*.aif binary
*.mp3 binary
# Set video files as binary by default.
*.mp4 binary
*.mov binary
# Set library files as binary by default and store with LFS.
*.lib filter=lfs diff=lfs merge=lfs -text
*.dll filter=lfs diff=lfs merge=lfs -text
*.a filter=lfs diff=lfs merge=lfs -text
*.so filter=lfs diff=lfs merge=lfs -text
# Set executable files as binary by default.
*.exe binary
*.dmg binary
# Set archive files as binary by default.
*.zip binary
*.7z binary
*.tar binary
*.gz binary
*.bz2 binary
*.xz binary
*.tar.gz binary
*.tar.bz2 binary
*.tar.xz binary
# Set AFEC model files as binary by default.
*.model binary