forked from nuecho/rivr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
28 lines (24 loc) · 730 Bytes
/
.gitattributes
File metadata and controls
28 lines (24 loc) · 730 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
# Definition of a custom attribute that reverse binary attribute
[attr]textfile text diff merge
# Declare files as binary by default preventing potential problematic end-of-line conversion
* binary
# Declare files that will always have native line endings on checkout.
*.checkstyle textfile
*.css textfile
*.gitattributes textfile
*.gitignore textfile
*.gradle textfile
*.java textfile
*.js textfile
*.json textfile
*.MF textfile
*.md textfile
*.properties textfile
*.txt textfile
*.html textfile
# Declare files that will always have LF line endings on checkout.
*.sh textfile eol=lf
gradlew textfile eol=lf
# Declare files that will always have CRLF line endings on checkout.
*.bat textfile eol=crlf
*.cmd textfile eol=crlf