forked from kovacshuni/koauth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
34 lines (26 loc) · 903 Bytes
/
.gitattributes
File metadata and controls
34 lines (26 loc) · 903 Bytes
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
33
34
# Set default behaviour, in case users don't have core.autocrlf set.
# This setting will tell git to handle the files specified automatically.
# This is a good default option.
* text=auto
# Explicitly declare text files we want to always be normalized and converted
# to native line endings on checkout.
# This setting tells git to always normalize the files specified.
# When committed they are stored with LF,
# on checkout they are converted to the OS's native line endings.
*.scala text
*.sbt text
*.java text
*.xml text
*.properties text
*.html text
*.css text
*.js text
*.txt text
# Denote all files that are truly binary and should not be modified.
# This setting tells git that the files specified are not text at all,
# and it should not try to change them.
*.png binary
*.jpg binary
*.ttf binary
*.otf binary
# Learn more on https://help.github.com/articles/dealing-with-line-endings