-
Notifications
You must be signed in to change notification settings - Fork 49
/
.gitattributes
92 lines (74 loc) · 2.41 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
##### Source code #####
## C++ and C source files
*.c text diff=cpp,eol=lf
*.h text diff=cpp,eol=lf
*.cpp text diff=cpp,eol=lf
*.cxx text diff=cpp,eol=lf
*.hpp text diff=cpp,eol=lf
## 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
## Doxygen documentation configuration files
Doxyfile text
*.dox text
## Image files
*.png binary
*.PNG binary
*.jpg binary
*.JPG binary
*.gif binary
*.GIF binary
*.bmp binary
*.BMP binary
*.ico binary
*.ICO binary
*.ppm binary
*.pgm binary
*.pbm binary
*.xpm -text diff -merge
## Vector graphics
*.svg -text diff -merge
## CMake files
CMakeLists.txt text eol=lf
## Makefiles
Makefile text
makefile text
GNUmakefile text
*.mk text
## Various IDE project files, etc
*.sln -text diff merge
*.vcxproj -text diff -merge
*.vcxproj.filters -text diff -merge
*.props -text diff -merge
*.pbxproj -text diff -merge
## Resource files and UI design descriptions
*.rc text eol=crlf
## Diff/patch files
*.diff text diff -merge
*.patch text diff -merge
## XML and configuration
*.xml text
*.cfg text
## Self-reference =)
.gitignore text
.gitattributes text