-
Notifications
You must be signed in to change notification settings - Fork 440
/
.gitattributes
42 lines (33 loc) · 1.12 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
##### Source code #####
## C++ and C source files
*.c text eol=lf diff=cpp
*.h text eol=lf diff=cpp
*.cpp text eol=lf diff=cpp
*.cxx text eol=lf diff=cpp
*.hpp text eol=lf diff=cpp
## Python scripts
*.py text eol=lf diff=python
## Perl scripts/libraries/modules
*.perl text eol=lf diff=perl
*.pl text eol=lf diff=perl
*.pm text eol=lf diff=perl
## Shell scripts
*.sh text eol=lf
*.bash text eol=lf
## Windows batch and PowerShell scripts
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
##### Other file types #####
## Text files and documentation
*.txt text
README* text
INSTALL* text
LICENSE* text
## Non-text documentation
*.html text diff=html
*.pdf binary
*.rtf binary
## Self-reference =)
.gitignore text
.gitattributes text