-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
18 lines (15 loc) · 599 Bytes
/
.gitattributes
File metadata and controls
18 lines (15 loc) · 599 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Assume everything to be LF, just to be consistent with other repositories.
* text=auto eol=lf
###### Windows scripting
# Windows Batch files are always CRLF.
*.bat text eol=crlf
# Powershell allows both CRLF and LF, but since it's cross-platform, use the Unix ending.
*.ps1 text eol=lf
# Visual Basic Scripts for Windows.
*.vbs text eol=crlf
###### Total Commander files
# Need to be CRLF because, tcmd will re-write these files when changed.
descript.ion text eol=crlf
###### Windows Explorer files
# Don't risk breaking explorer.exe, it's a Windows file, keep CRLF.
desktop.ini text eol=crlf