-
Notifications
You must be signed in to change notification settings - Fork 163
/
.gitattributes
62 lines (53 loc) · 1.65 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
.git* text export-ignore
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto
# Explicitly declare text files you want to always be normalized and converted
# to native line endings on checkout.
*.py text whitespace=tab-in-indent,trail,space
*.cpp text whitespace=tab-in-indent,trail,space
*.hpp text whitespace=tab-in-indent,trail,space
*.cxx text whitespace=tab-in-indent,trail,space
*.hxx text whitespace=tab-in-indent,trail,space
*.mm text whitespace=tab-in-indent,trail,space
*.c text whitespace=tab-in-indent,trail,space
*.h text whitespace=tab-in-indent,trail,space
*.H text whitespace=tab-in-indent,trail,space
*.cu text whitespace=tab-in-indent,trail,space
*.java text whitespace=tab-in-indent,trail,space
*.md text
*.pro text whitespace=tab-in-indent,trail,space
*.cmake text whitespace=tab-in-indent,trail,space
*.cmakein text whitespace=tab-in-indent,trail,space
*.in text whitespace=tab-in-indent,trail,space
CMakeLists.txt text whitespace=tab-in-indent,trail,space
*.sh eol=lf
# Declare files that will always have CRLF line endings on checkout.
# VS 20xx files
*.sln text eol=crlf
*.vcproj text eol=crlf merge=union
*.vcxproj text eol=crlf merge=union
*.vcxproj.filters text eol=crlf
# VC6 files
*.dsw text eol=crlf
*.dsp text eol=crlf
*.dsptemplate text eol=crlf
# Other 'windows-specific' files
*.bat text eol=crlf
*.bat.in text eol=crlf
*.cmd text eof=crlf
# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary
*.jpeg binary
*.exr binary
*.ico binary
*.a binary
*.so binary
*.dll binary
*.pdf binary
*.pbxproj text eol=lf
*.vec binary
*.doc binary
*.S text
*.xml -text
*.yml -text