-
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.
- Loading branch information
Fred Snyder
committed
Mar 26, 2022
1 parent
afd58bf
commit 13a3655
Showing
1 changed file
with
48 additions
and
1 deletion.
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,58 @@ | ||
# Set the default EOF behavior | ||
* text eof=lf | ||
|
||
# If a file with CRLF endings accidentally gets introduced, | ||
# tell Git to convert CRLF to LF on commit but not the other way around. | ||
# https://git-scm.com/book/en/v2/Customizing-Git-Git-Configuration#_core_autocrlf | ||
core.autocrlf=input | ||
|
||
# Denote all files that are truly binary and should not be modified. | ||
|
||
# images | ||
*.png binary | ||
*.jpg binary | ||
*.ico binary | ||
|
||
# Adobe | ||
*.psd binary | ||
*.ai binary | ||
*.eps binary | ||
|
||
# Affinty | ||
*.afphoto binary | ||
*.afdesign binary | ||
|
||
# audio/video | ||
*.mp3 binary | ||
*.mp4 binary | ||
*.m4v binary | ||
*.webm binary | ||
*.ogg binary | ||
|
||
# archives | ||
*.zip binary | ||
*.ico binary | ||
*.rar binary | ||
*.7z binary | ||
*.tar binary | ||
*.tar.gz binary | ||
|
||
# fonts | ||
*.eot binary | ||
*.woff binary | ||
*.woff2 binary | ||
*.ttf binary | ||
|
||
# documents | ||
*.pdf binary | ||
*.doc binary | ||
*.docx binary | ||
*.odt binary | ||
*.ods binary | ||
*.odp binary | ||
|
||
# data | ||
*.sqlite binary | ||
*.db binary | ||
*.db3 binary | ||
|
||
|