-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy path.gitattributes
80 lines (71 loc) · 1.7 KB
/
.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
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
# Auto
* text=auto
# Excluded Files
.gitattributes export-ignore
.gitignore export-ignore
.gitkeep export-ignore
# Archives
*.7z binary
*.gz binary
*.rar binary
*.tar binary
*.tgz binary
*.zip binary
# Documents
*.adoc text
*.bibtex text diff=bibtex
*.csv text eol=crlf
*.doc diff=astextplain
*.docx diff=astextplain
*.dot diff=astextplain
*.md text diff=markdown
*.mdx text diff=markdown
*.mustache text
*.pdf diff=astextplain
*.rtf diff=astextplain
*.tab text
*.tex text diff=tex
*.textile text
*.tsv text
*.sql text
# Graphics
*.eps binary
*.gif binary
*.ico binary
*.jpeg binary
*.jpg binary
*.png binary
*.svg text
*.tif binary
*.tiff binary
# Scripts
*.bash text eol=lf
*.bat text eol=crlf
*.cmd text eol=crlf
*.fish text eol=lf
*.ps1 text eol=crlf
*.sh text eol=lf
*.zsh text eol=lf
# Serialisation
*.json text
*.xml text
*.yaml text
*.yml text
# Python: Source Files
*.pxd text diff=python
*.py text diff=python
*.py3 text diff=python
*.pyi text diff=python
*.pyw text diff=python
*.pyx text diff=python
*.pyz text diff=python
# Python: Binary Files
*.db binary
*.p binary
*.pickle binary
*.pkl binary
*.pyc binary export-ignore
*.pyd binary
*.pyo binary export-ignore
# Jupyter Notebook
*.ipynb text eol=lf