-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.gitattributes
More file actions
41 lines (35 loc) · 891 Bytes
/
.gitattributes
File metadata and controls
41 lines (35 loc) · 891 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
# Normalize text files and enforce LF endings where appropriate
*.sh text eol=lf
*.py text eol=lf
*.md text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.json text eol=lf
*.ipynb text eol=lf
Dockerfile* text eol=lf
# Treat typical DFIR artefact containers and images as binary
*.dd binary
*.E01 binary
*.e01 binary
*.img binary
*.iso binary
*.vmdk binary
*.vhd binary
*.vhdx binary
# Common compressed/binary artefacts
*.gz binary
*.tgz binary
*.zip binary
*.7z binary
*.bz2 binary
*.xz binary
*.pcap binary
*.pcapng binary
# Avoid diff noise for compiled objects and libraries
*.o binary
*.so binary
*.dll binary
*.exe binary
*.ko binary
# Keep Makefiles, Docker, and shell scripts diffable
Makefile text eol=lf