-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.gitattributes
More file actions
32 lines (27 loc) · 1.03 KB
/
.gitattributes
File metadata and controls
32 lines (27 loc) · 1.03 KB
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
# .gitattributes - Tell Git how to handle different file formats in the repo.
# Unrecognized formats: Let Git decide whether the file is text or binary.
# If text, checkout system line endings (or follow `git config core.eol`).
# If binary, don't mess with line endings (avoid corrupting the file).
* text=auto
# Text files: Checkout system line endings (or follow `git config core.eol`).
*.txt text
*.md text
*.mscx text
*.musicxml text
*.xml text
*.json text
*.yaml text
*.py text
# Shell scripts: Checkout with LF line endings (Unix-style).
*.sh text eol=lf
# Batch files: Checkout with CRLF line endings (Windows-style).
*.bat text eol=crlf
*.cmd text eol=crlf
# Binary files: Don't mess with line endings (avoid corrupting the file).
*.mscz binary
*.mxl binary
*.pdf binary
*.mid binary
*.wav binary
*.mp3 binary
*.zip binary