-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
17 lines (14 loc) · 768 Bytes
/
.gitattributes
File metadata and controls
17 lines (14 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Normalise line endings automatically for files detected as text by default.
# That is: let the git installation on a user's machine decide
# which line ending to use when a repository is checked out.
# Subsequent lines may override this setting.
* text=auto
# recognise file syntax during diff
*.md text diff=markdown
*.sh text diff=bash
# force bash scripts to always use LF
*.sh text eol=lf
# specify which files/dirs to ignore on [download ZIP] (not a git repo)
.gitattributes export-ignore
.gitignore export-ignore
.github export-ignore