-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
46 lines (38 loc) · 818 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
37
38
39
40
41
42
43
44
45
46
# Default to text and auto
* text=auto
# Lock batchfile line endings to CRLF
*.bat text eol=crlf
# Lock shell script line endings to LF
*.sh text eol=lf
# Unity files
*.unity text merge=unityyamlmerge eol=lf
*.unity.meta text merge=unityyamlmerge eol=lf
*.asset text merge=unityyamlmerge eol=lf
*.asset.meta text merge=unityyamlmerge eol=lf
*.prefab text merge=unityyamlmerge eol=lf
*.prefab.meta text merge=unityyamlmerge eol=lf
# Script files
*.cs text diff=csharp eol=lf
*.cs.meta text eol=lf
*.js text eol=lf
*.js.meta text eol=lf
# Image files
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
# Audio files
*.wav binary
*.mp3 binary
*.ogg binary
# 3D model files
*.fbx binary
*.obj binary
# Other binary files
*.aif binary
*.ttf binary
*.pdf binary
*.zip binary
*.exe binary
*.dll binary