Skip to content

Commit

Permalink
Add .gitattributes to avoid line endings issues
Browse files Browse the repository at this point in the history
Since commit 56e687f, Linux line endings (LF) are enforced. But on
Windows, a common practice is to set core.autocrlf to 'auto', wich mean
that the local copy of the file has Windows line endings, whereas the
remote copy has Linux line endings (cf. https://help.github.com/articles/dealing-with-line-endings/#platform-windows).

With core.autoclrf=auto, Checkstyle will throw an error because local
files will have Windows line endings.

This setting will set Linux line endings for all text files, except
.cmd files.
  • Loading branch information
olivierlemasle authored and nacx committed Oct 7, 2015
1 parent c73b82b commit 99c5b9a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* text eol=lf
*.cmd binary

0 comments on commit 99c5b9a

Please sign in to comment.