Skip to content

Commit

Permalink
Add gitattributes file
Browse files Browse the repository at this point in the history
Sets dat and spp files eol=crlf, this will hopefully fix the EOL problem
when creating zips (Windows not recognizing line endings).
  • Loading branch information
jlehtoma committed Dec 9, 2015
1 parent 3fd2d65 commit 69bc2e0
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto

# Declare files that will always have CRLF line endings on checkout.
*.spp text eol=crlf
*.dat text eol=crlf
*.txt text eol=crlf

# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary

0 comments on commit 69bc2e0

Please sign in to comment.