-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
71 lines (68 loc) · 1.86 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
71
# default rule, do not touch anything
# manual: "When more than one pattern matches the path, a later line overrides an earlier line. This overriding is done per attribute."
# NOT WORKING AS INTENDED, WHETHER ON TOP OR BOTTOM (2015/06)
# * -text -diff
# text files that should have line ending normalization
*.asm text eol=crlf
*.bat text eol=crlf
*.c text eol=crlf
*.cpp text eol=crlf
*.cs text eol=crlf
*.css text eol=crlf
*.h text eol=crlf
*.hs text eol=crlf
*.htm text eol=crlf
*.html text eol=crlf
*.inc text eol=crlf
*.ini text eol=crlf
*.java text eol=crlf
*.js text eol=crlf
*.lisp text eol=crlf
*.lua text eol=crlf
*.php text eol=crlf
*.py text eol=crlf
*.rb text eol=crlf
*.rc text eol=crlf
*.reg text eol=crlf
*.sln text eol=crlf
*.txt text eol=crlf
*.vb text eol=crlf
*.vcproj text eol=crlf
*.xml text eol=crlf
.htaccess text eol=crlf
.gitattributes text eol=crlf
.gitignore text eol=crlf
# binary files that should be left untouched ("binary" can be used as a macro for "-text -diff")
*.7z -text -diff
*.ai -text -diff
*.ani -text -diff
*.bmp -text -diff
*.cur -text -diff
*.fla -text -diff
*.flv -text -diff
*.gif -text -diff
*.gz -text -diff
*.ico -text -diff
*.jar -text -diff
*.jpeg -text -diff
*.jpg -text -diff
*.mov -text -diff
*.mp3 -text -diff
*.mp4 -text -diff
*.png -text -diff
*.rar -text -diff
*.swf -text -diff
*.ttf -text -diff
*.wmv -text -diff
*.zip -text -diff
# documents (standard to msysgit)
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain