-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
34 lines (28 loc) · 818 Bytes
/
.gitattributes
File metadata and controls
34 lines (28 loc) · 818 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
# let git decide on line ending conversions by default
* text eol=auto
# shell scripts (.bat, .sh)
*.[bB][aA][tT] text eol=crlf
*.sh text eol=lf
.github/workflows/*.yml text eol=lf
# VBA sources (.bas, .cls, .frm, .frx)
*.[bB][aA][sS] text eol=crlf
*.[cC][lL][sS] text eol=crlf
*.[fF][rR][mM] text eol=crlf
*.[fF][rR][xX] binary
# Excel workbook source files (.xml, .bin)
*.[xX][mM][lL] text eol=auto
*.[bB][iI][nN] binary
# Excel documents (.xla, .xlam, .xls, .xlsb, .xlsm, .xlsx)
*.[xX][lL][aA] binary
*.[xX][lL][aA][mM] binary
*.[xX][lL][sS] binary
*.[xX][lL][sS][bB] binary
*.[xX][lL][sS][mM] binary
*.[xX][lL][sS][xX] binary
# Portable Document Format (.pdf)
*.[pP][dD][fF] diff=astextplain
# other files/images
*.[pP][nN][gG] binary
*.[gG][iI][fF] binary
*.[jJ][pP][gG] binary
*.[sS][vV][gG] text eol=auto