-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy path.gitattributes
More file actions
33 lines (29 loc) · 783 Bytes
/
Copy path.gitattributes
File metadata and controls
33 lines (29 loc) · 783 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
# Handle line endings automatically for files detected as text
# and leave all files detected as binary untouched.
* text=auto
#
# The above will handle all files NOT found below
#
# These files are text and should be normalized (Convert crlf => lf)
Gemfile
Rakefile
Vagrantfile
*.rb text
*.md text
*.gemspec text
*.lock text
*.txt text
*.yml text
*.yaml text
*.prefs text
# Eclipse specific files
*.project text
*.buildpath text
# Those have specific eol for testing purpose
test/resources/json/params_unix_eol.json eol=lf
test/resources/json/params_windows_eol.json eol=crlf
test/resources/yml/params_unix_eol.yml eol=lf
test/resources/yml/params_windows_eol.yml eol=crlf
# These files are binary and should be left untouched
# (binary is a macro for -text -diff)
*.gem binary