-
Notifications
You must be signed in to change notification settings - Fork 24
/
.gitattributes
108 lines (96 loc) · 2.14 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#######################################################################
#
# This is the Git Attributes configuration file.
# For details, see: https://git-scm.com/docs/gitattributes
#
# This deals with things like line endings.
# For help on dealing with line endings, see:
# https://help.github.com/articles/dealing-with-line-endings/
#
#######################################################################
## AUTO-DETECT
## This sets the default behavior for users who don't have
## core.autocrlf set. Handles line endings automatically for
## files detected as text and leave all files detected as binary
## untouched. This will handle all files NOT defined below.
* text=auto
# Explicitly declare text files that should always be normalized and
# converted to native line endings on checkout...
## SOURCE CODE
*.c text
*.cc text
*.cxx text
*.cpp text
*.c++ text
*.hpp text
*.h text
*.h++ text
*.hh text
*.svg text
*.html text diff=html
*.css text
*.js text
*.lua text
## DOCUMENTATION
*.markdown text
*.md text
*.txt text
AUTHORS text
CHANGELOG text
CHANGES text
Doxyfile text
CONTRIBUTING text
COPYING text
copyright text
*COPYRIGHT* text
INSTALL text
license text
LICENSE text
NEWS text
readme text
*README* text
TODO text
## CONFIGS
*.bowerrc text
*.cnf text
*.conf text
*.config text
.browserslistrc text
.editorconfig text
.gitattributes text
.gitconfig text
.gitignore text
.htaccess text
*.npmignore text
*.yaml text
*.yml text
browserslist text
Makefile text
makefile text
# Declare files that will always have CRLF line endings on checkout...
*.sln text eol=crlf
# Denote all files that are truly binary and should not be modified...
*.png binary
*.jpg binary
*.gif binary
# 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