-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.gitattributes
43 lines (35 loc) · 958 Bytes
/
.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
# Default for all
* text=auto eol=lf
*.txt text
# Documentation
*.md text diff=markdown eol=crlf export-ignore
*.tex text diff=tex
# Typical used data formats
*.csv text diff=csv
*.xml text diff=xml
*.json text diff=json
# Image Formats
*.svg text diff=xml
*.bmp binary diff=exif
*.png binary diff=exif
*.tga binary diff=exif
*.jpg binary diff=exif
*.jpeg binary diff=exif
*.webp binary diff=exif
*.gif binary diff=exif
# used for workflows
*.yaml text diff=yaml export-ignore
*.yml text diff=yml export-ignore
# Scripts
*.sh text diff=shexport-ignore
*.ps1 text diff=ps1 eol=crlf export-ignore
# Git attributes
.gitignore text diff=gitignore export-ignore
.gitattributes text diff=gitattributes export-ignore
.gitmodules text diff=gitmodules export-ignore
/.scripts export-ignore
/.github export-ignore
/docs export-ignore
# LFS Files
*.lfs filter=lfs diff=lfs merge=lfs -text export-ignore
*.lfs.* filter=lfs diff=lfs merge=lfs -text export-ignore