-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
65 lines (55 loc) · 948 Bytes
/
.gitattributes
File metadata and controls
65 lines (55 loc) · 948 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Set default behavior to automatically normalize line endings
* text=auto
# Force batch scripts to always use CRLF line endings
*.bat text eol=crlf
# Force bash scripts to always use LF line endings
*.sh text eol=lf
# C++ source files
*.c text
*.cc text
*.cxx text
*.cpp text
*.c++ text
*.hpp text
*.h text
*.h++ text
*.hh text
# Documentation
*.md text
*.txt text
*.adoc text
*.tex text
# Graphics
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.svg text
# Archives
*.7z binary
*.gz binary
*.tar binary
*.tgz binary
*.zip binary
# Configuration files
*.yml text
*.yaml text
*.json text
*.toml text
*.ini text
*.cfg text
*.conf text
# Build files
Makefile text
*.mk text
*.cmake text
CMakeLists.txt text
# Ignore generated files from version control
generated/ export-ignore
cmake-build-debug/ export-ignore
build/ export-ignore
logs/ export-ignore
actions-runner/ export-ignore
# GitHub files
.github/ export-ignore