Reintroduction of .gitattributes (#593)

`.gitattributes` was originally introduced via pull request #473.
The file was temporarily reverted in pull request #594. This commit
reintroduces the change with the appropriate adjustments to the
internal git representations for these files.
This commit is contained in:
Robert Quattlebaum
2016-09-14 17:19:39 -07:00
committed by Jonathan Hui
parent fd0ce6526d
commit 8831217615
57 changed files with 9372 additions and 9353 deletions
+19
View File
@@ -0,0 +1,19 @@
# Treat everything that seems like a text file as a text file, with
# whatever line endings are specified for this repository.
* text=auto
# Treat files which are obviously binary as binary.
*.gz -text
# Files that need to keep unix file endings
bootstrap text eol=lf
*.sh text eol=lf
*.m4 text eol=lf
configure.ac text eol=lf
Makefile.am text eol=lf
Makefile.in text eol=lf
# Files that need to keep Windows file endings
*.vcxproj text eol=crlf
*.vcxproj.filters text eol=crlf
*.sln text eol=crlf