-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
33 lines (29 loc) · 765 Bytes
/
.gitattributes
File metadata and controls
33 lines (29 loc) · 765 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
# Images are binary
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.webp binary
*.bmp binary
*.tif binary
*.tiff binary
*.ico binary
*.psd binary
*.heic binary
*.avif binary
# SVG must be treated as XML (text)
*.svg text
# Not expecting audio or video but in case it happens, binary
*.mp3 binary
*.wav binary
*.ogg binary
*.mp4 binary
*.mov binary
# Use Git LFS for large binary files (requires git-lfs installed)
# Uncomment the types you want tracked by LFS, then run: git lfs install && git lfs track "<pattern>"
#*.png filter=lfs diff=lfs merge=lfs -text
#*.jpg filter=lfs diff=lfs merge=lfs -text
#*.zip filter=lfs diff=lfs merge=lfs -text
# Python is still Python tho
*.py text
*.py linguist-language=Python