-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
43 lines (38 loc) · 862 Bytes
/
.gitattributes
File metadata and controls
43 lines (38 loc) · 862 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Set default behavior to automatically normalize line endings
* text=auto
# Explicitly declare text files you want to always be normalized and converted to native line endings on checkout.
*.cs text
*.js text
*.json text
*.xml text
*.sh text eol=lf
*.bat text eol=crlf
*.md text
# Binary files
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.dll binary
*.exe binary
*.unity binary
# Unity specific files
*.meta text
*.asset binary
*.prefab binary
*.fbx binary
*.mat binary
*.anim binary
*.controller binary
*.ttf binary
*.otf binary
# Custom diff settings for specific file types
*.cs diff=csharp
*.js diff=javascript
*.json diff=json
*.xml diff=xml
# Merge settings for specific file types
*.cs merge=union
*.js merge=union
*.json merge=union
*.xml merge=union