-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
89 lines (79 loc) · 1.51 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# Auto detect text files and perform LF normalization
* text=auto
# Custom for Visual Studio
*.cs diff=csharp
# 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
# Common Windows files
*.txt eol=crlf
*.TXT eol=crlf
*.bat eol=crlf
*.BAT eol=crlf
*.cmd eol=crlf
*.CMD eol=crlf
# Might contain binary data but should try to be displayed as text...
*.csv -text
*.CSV -text
# Reg files are UTF-16 and this might cause problems...
*.reg binary
*.REG binary
# Common Linux files
*.sh eol=lf
*.bash eol=lf
Makefile eol=lf
# Common Visual Studio files
*.sln eol=crlf
*.vcproj eol=crlf
*.vcxproj eol=crlf
*.vcxproj.filters eol=crlf
*.rc eol=crlf
*.res eol=crlf
*.resx eol=crlf
# LaTeX
*.tex eol=crlf
*.TEX eol=crlf
*.bib eol=crlf
*.BIB eol=crlf
*.lyx eol=crlf
*.LYX eol=crlf
# Seanet
*.v4log binary
*.partheader binary
*.userver binary
# MOOS
# Might contain binary data but should try to be displayed as text...
*.alog -text
# ROS
*.launch eol=lf
*.yaml eol=lf
#
**/*.kml eol=crlf
**/*.KML eol=crlf
**/*.xml eol=crlf
**/*.XML eol=crlf
**/*.java eol=crlf
**/*.JAVA eol=crlf
**/*.m eol=crlf
**/*.M eol=crlf
**/*.py eol=crlf
**/*.PY eol=crlf
**/*.ino eol=crlf
**/*.INO eol=crlf
**/*.c eol=crlf
**/*.C eol=crlf
**/*.cpp eol=crlf
**/*.CPP eol=crlf
**/*.h eol=crlf
**/*.H eol=crlf
**/*.hpp eol=crlf
**/*.HPP eol=crlf
**/*.pro eol=crlf