forked from Venthe/Personal-Development-Pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
26 lines (24 loc) · 801 Bytes
/
.gitattributes
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
# Configure line ending normalisation for this repository.
# See http://schacon.github.io/git/gitattributes.html for more information.
#
# Also each developer should configure the old style normalisation on her workstation
# (see http://timclem.wordpress.com/2012/03/01/mind-the-end-of-your-line/):
#
# Windows user should use: git config --global core.autocrlf = true
# Unix/Linux users should use: git config --global core.autocrlf = input
#
# Auto detect text files and perform LF normalization
* text=auto
# Shell scripts require LF
*.sh text eol=lf
*.j2 text eol=lf
*.ldif text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
.env text eol=lf
*key text eol=lf
*key.pub text eol=lf
*.gitignore text eol=lf
*.gitattributes text eol=lf
# Batch scripts require CRLF
*.bat text eol=crlf