-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.gitattributes
More file actions
42 lines (42 loc) · 904 Bytes
/
.gitattributes
File metadata and controls
42 lines (42 loc) · 904 Bytes
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
# Commit everything as LF, but on Windows checkout with CRLF.
* text=auto
# Git tries to detect if a file is a text file, but we can tell it
# explicitly which files are text and which binaries.
# Cygwin (?) man files
*.3x text
*.bat text eol=crlf
*.c text
*.cc text
*.cpp text
*.h text
*.hpp text
*.htm text
*.html text
# implementation file - basically a C++ header
*.ipp text
# installer settings
*.iss text
*.lua text
*.mak text
*.md text
*.pl text
*.py text
*.sh text
*.sln text eol=crlf
*.txt text
*.vcproj text eol=crlf
*.vcxproj text eol=crlf
AUTHORS text
CHANGES text
INSTALL text
LICENSE text
NEWS text
README text
TODO text
*.ico binary
*.jpg filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.pyc binary
*.so filter=lfs diff=lfs merge=lfs -text
*.dll filter=lfs diff=lfs merge=lfs -text
*.lib filter=lfs diff=lfs merge=lfs -text