-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add gitattributes for line ending normalization.
Add additional exclusions to gitignore.
- Loading branch information
Wulfspider
committed
Aug 8, 2013
1 parent
487a2ee
commit ea80453
Showing
2 changed files
with
48 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,16 @@ | ||
# LF ling endings on repository and locally | ||
* text eol=lf | ||
*.java text eol=lf | ||
# Normalize as LF in the repository, OS native locally | ||
* text=auto | ||
*.java text | ||
|
||
# Binary files that should not be modified | ||
*.dat binary | ||
*.db binary | ||
*.icns binary | ||
*.ico binary | ||
*.key binary | ||
*.jks binary | ||
*.jpg binary | ||
*.png binary | ||
*.ttf binary | ||
*.wav binary | ||
JavaApplicationStub binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters