This repository was archived by the owner on May 27, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +101
-2
lines changed
Expand file tree Collapse file tree 1 file changed +101
-2
lines changed Original file line number Diff line number Diff line change 1- # all files are checked into the repo with LF
2- * text =auto
1+ # Common settings that generally should always be used with your language specific settings
2+ # https://github.com/gitattributes/gitattributes/blob/master/Common.gitattributes
3+
4+ # Auto detect text files and perform LF normalization
5+ * text =auto
6+
7+ #
8+ # The above will handle all files NOT found below
9+ #
10+
11+ # Documents
12+ * .bibtex text diff =bibtex
13+ * .doc diff =astextplain
14+ * .DOC diff =astextplain
15+ * .docx diff =astextplain
16+ * .DOCX diff =astextplain
17+ * .dot diff =astextplain
18+ * .DOT diff =astextplain
19+ * .pdf diff =astextplain
20+ * .PDF diff =astextplain
21+ * .rtf diff =astextplain
22+ * .RTF diff =astextplain
23+ * .md text diff =markdown
24+ * .mdx text diff =markdown
25+ * .tex text diff =tex
26+ * .adoc text
27+ * .textile text
28+ * .mustache text
29+ * .csv text eol =crlf
30+ * .tab text
31+ * .tsv text
32+ * .txt text
33+ * .sql text
34+ * .epub diff =astextplain
35+
36+ # Graphics
37+ * .png binary
38+ * .jpg binary
39+ * .jpeg binary
40+ * .gif binary
41+ * .tif binary
42+ * .tiff binary
43+ * .ico binary
44+ # SVG treated as text by default.
45+ * .svg text
46+ # If you want to treat it as binary,
47+ # use the following line instead.
48+ # *.svg binary
49+ * .eps binary
50+
51+ # Scripts
52+ * .bash text eol =lf
53+ * .fish text eol =lf
54+ * .ksh text eol =lf
55+ * .sh text eol =lf
56+ * .zsh text eol =lf
57+ # These are explicitly windows files and should use crlf
58+ * .bat text eol =crlf
59+ * .cmd text eol =crlf
60+ * .ps1 text eol =crlf
61+
62+ # Serialisation
63+ * .json text
64+ * .toml text
65+ * .xml text
66+ * .yaml text
67+ * .yml text
68+
69+ # Archives
70+ * .7z binary
71+ * .bz binary
72+ * .bz2 binary
73+ * .bzip2 binary
74+ * .graphml binary
75+ * .gz binary
76+ * .lz binary
77+ * .lzma binary
78+ * .parquet binary
79+ * .rar binary
80+ * .tar binary
81+ * .taz binary
82+ * .tbz binary
83+ * .tbz2 binary
84+ * .tgz binary
85+ * .tlz binary
86+ * .txz binary
87+ * .xz binary
88+ * .Z binary
89+ * .zip binary
90+ * .zst binary
91+
92+ # Text files where line endings should be preserved
93+ * .patch - text
94+
95+ #
96+ # Exclude files from exporting
97+ #
98+
99+ .gitattributes export-ignore
100+ .gitignore export-ignore
101+ .gitkeep export-ignore
You can’t perform that action at this time.
0 commit comments