-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy path.gitattributes
41 lines (35 loc) · 846 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
# default: self-detect the content type (text vs. binary)
* text=auto
# an enforced "text" attribute overwrites mixed line-endings in the repo
*.conf text
*.cpp text
*.css text
*.dtd text
*.h text
*.htm text
*.html text
*.ini text
*.js text
*.json text
*.md text
*.mq4 text
*.mq5 text
*.mqh text
*.mql text
*.php text
*.phtml text
*.properties text
*.sh text
*.sql text
*.txt text
*.xml text
*.yml text
# checkout with Windows line-endings (not yet supported by EGit)
*.dsp text eol=crlf
*.dsw text eol=crlf
*.tpl text eol=crlf
*.vcproj* text eol=crlf
*.vcxproj* text eol=crlf
# set content encodings
* encoding=CP1252
*.md encoding=UTF-8