-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
70 lines (63 loc) · 1.1 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
68
69
70
# Set default behaviour, in case users don't have core.autocrlf set.
* text=auto
# Explicitly declare text files we want to always be normalized and converted
# to native line endings on checkout.
*.asm text
*.bat text
*.c text
*.cmd text
*.cpp text
*.def text
*.h text
*.hpp text
*.mac text
*.mak text
*.md text
*.rc text
*.txt text
*.umt text
*.yml text
read.me text
.gitattributes text
.gitignore text
# Declare files that will always have LF line endings on checkout.
# Declare files that will always have CRLF line endings on checkout.
# Denote all files that are truly binary and should not be modified.
*.dll binary
*.exe binary
*.gif binary
*.jpg binary
*.lib binary
*.obj binary
*.o16 binary
*.o32 binary
*.ob9 binary
*.obn binary
*.obo binary
*.obw binary
*.ovl binary
*.pcx binary
*.png binary
*.res binary
*.re9 binary
*.ren binary
*.reo binary
*.rew binary
*.sym binary
*.sys binary
*.uni binary
*.zip binary
# Designer binary files
*.bmp binary
*.dat binary
*.fnt binary
*.fon binary
*.chr binary
*.ico binary
*.znc binary
*.z_t binary
# locale files
*.en binary
*.es binary
*.fr binary
*.it binary