-
Notifications
You must be signed in to change notification settings - Fork 60
/
.gitattributes
61 lines (50 loc) · 1.03 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
# Let git use LF in git and automatic line endings in the OS
* text=auto
# if something breaks again, add -text to see line endings in diff
*.dlg diff text
*.sc text
*.ini diff text
# Declare files that will always have CRLF line endings on checkout.
*.sln text eol=crlf
# Sources
*.c text
*.cc text
*.cxx text
*.cpp text
*.c++ text
*.hpp text
*.h text
*.h++ text
*.hh text
# Never modify line endings
*.sh text -crlf
# Localization
*.po diff text
/Content/Localization/**/*.manifest diff text working-tree-encoding=UTF-16 eol=CRLF
/Content/Localization/**/*.archive diff text working-tree-encoding=UTF-16 eol=CRLF
*.locres binary
*.locmeta binary
*.mo binary
# Manifest Resource files
/Source/**/*.manifest diff text eol=CRLF
# Compiled Object files
*.slo binary
*.lo binary
*.o binary
*.obj binary
# Precompiled Headers
*.gch binary
*.pch binary
# Compiled Dynamic libraries
*.so binary
*.dylib binary
*.dll binary
# Compiled Static libraries
*.lai binary
*.la binary
*.a binary
*.lib binary
# Executables
*.exe binary
*.out binary
*.app binary