-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.gitattributes
More file actions
86 lines (86 loc) · 1.66 KB
/
.gitattributes
File metadata and controls
86 lines (86 loc) · 1.66 KB
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
##### Global default #####
## Any file not listed below will let Git auto-detect text files and normalize EOL,
* text=auto
##### Source code #####
## C++ and C source files
*.h text diff=cpp
*.cc text diff=cpp
*.c text diff=cpp
*.cpp text diff=cpp
*.cxx text diff=cpp
*.hh text 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 scripts
*.bat text eol=crlf
## Image files
*.png binary
*.jpg binary
*.gif binary
*.bmp binary
*.ico binary
*.svg -text diff -merge
## CMake files
CMakeLists.txt text
*.cmake text
## Makefiles
Makefile text
makefile text
*.mk text
## Diff/patch files
*.diff text diff -merge
*.patch text diff -merge
## XML and configuration
*.xml text
*.cfg text
# export-ignores
/hooks export-ignore
/ci export-ignore
/tools export-ignore
/.clang-format export-ignore
/.clang-tidy-ignore export-ignore
/.editorconfig export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.travis.yml export-ignore
/.appveyor.yml export-ignore
# sources
*.c text
*.cc text
*.cxx text
*.cpp text
*.c++ text
*.hpp text
*.h text
*.h++ text
*.hh text
# 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
# SCM syntax highlighting & preventing 3-way merges
pixi.lock merge=binary linguist-language=YAML linguist-generated=true -diff