-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
29 lines (29 loc) · 1.29 KB
/
.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
27
28
29
# file: .gitattributes
# auth: Victor Schappert
# date: 20171127
# desc: Repository default Git attributes file
################################################################################
# Force Git repository to normalize all line endings to LF.
# See: http://git-scm.com/docs/gitattributes#_end_of_line_conversion
# See: https://help.github.com/articles/dealing-with-line-endings/
# See: http://stackoverflow.com/a/1511273/1911388
#
# Users who want to see LF in the working directory should run
# $ git config core.eol=lf
################################################################################
* text=auto
################################################################################
# Explicit listing of file name patterns that are text or binary
################################################################################
README* text
LICENSE text
.gitignore text
.gitattributes text
*.gradle text
*.java text
*.kt text
################################################################################
# Large binary files tracked using Git LFS.
################################################################################
*.pdf filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text