This repository has been archived by the owner on Oct 25, 2024. It is now read-only.
-
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
1 parent
4e1f131
commit c18d5dc
Showing
1 changed file
with
181 additions
and
15 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,22 +1,188 @@ | ||
# Basic .gitattributes for a Lua repo. | ||
# Apply native OS line-endings on checkout of these files... | ||
*.boo text | ||
*.c text | ||
*.cginc text | ||
*.config text | ||
*.contentproj text | ||
*.cpp text | ||
*.dae text | ||
*.DAE text | ||
*.dtd text | ||
*.fx text | ||
*.glsl text | ||
*.h text | ||
*.inc text | ||
*.ini text | ||
*.js text | ||
*.JSFL text | ||
*.jsfl text | ||
*.json text | ||
*.log text | ||
*.md text | ||
*.mel text | ||
*.php text | ||
*.shader text | ||
*.txt text | ||
*.TXT text | ||
*.uss text | ||
*.uxml text | ||
*.xaml text | ||
*.xml text | ||
*.xsd text | ||
.gitattributes text | ||
.gitignore text | ||
COPYING text | ||
INSTALL* text | ||
KEYS* text | ||
LICENSE* text | ||
NEWS* text | ||
NOTICE* text | ||
README* text | ||
TODO* text | ||
WHATSNEW* text | ||
|
||
# Source files | ||
# ============ | ||
*.lua text | ||
# Apply Unix-style LF line-endings on checkout of these files... | ||
*.meta text eol=lf | ||
*.sh text eol=lf | ||
*.vspscc text eol=lf | ||
.htaccess text eol=lf | ||
*.cs text eol=lf | ||
|
||
# Luadoc output | ||
# ============= | ||
#*.html text diff=html | ||
*.css text diff=css | ||
# Previous "binary" | ||
*.mat text | ||
*.unity text eol=lf | ||
*.asset text eol=lf | ||
*.prefab text eol=lf | ||
|
||
# *.json linguist-detectable=false | ||
# Apply Windows/DOS-style CR-LF line-endings on checkout of these files... | ||
*.bat text eol=crlf | ||
*.cmd text eol=crlf | ||
*.csproj text eol=crlf | ||
*.sln text eol=crlf | ||
*.user text eol=crlf | ||
*.vcproj text eol=crlf | ||
*.css text eol=crlf | ||
*.htm text eol=crlf | ||
*.html text eol=crlf | ||
|
||
*.md linguist-documentation=false | ||
*.md linguist-detectable | ||
# No end-of-line conversions are applied (i.e., "-text -diff") to these files... | ||
*.7z binary | ||
*.ai binary | ||
*.anim binary | ||
*.apk binary | ||
*.bin binary | ||
*.bmp binary | ||
*.BMP binary | ||
*.com binary | ||
*.COM binary | ||
*.controller binary | ||
*.cubemap binary | ||
*.dex binary | ||
*.dll binary | ||
*.DLL binary | ||
*.dylib binary | ||
*.eps binary | ||
*.exe binary | ||
*.EXE binary | ||
*.exr binary | ||
*.fbx binary | ||
*.FBX binary | ||
*.fla binary | ||
*.flare binary | ||
*.flv binary | ||
*.gif binary | ||
*.guiskin binary | ||
*.gz binary | ||
*.ht binary | ||
*.ico binary | ||
*.jpeg binary | ||
*.jpg binary | ||
*.keystore binary | ||
*.mask binary | ||
*.mb binary | ||
*.mp3 binary | ||
*.mp4 binary | ||
*.mpg binary | ||
*.ogg binary | ||
*.PCX binary | ||
*.pcx binary | ||
*.pdb binary | ||
*.pdf binary | ||
*.physicMaterial binary | ||
*.physicmaterial binary | ||
*.png binary | ||
*.ps binary | ||
*.psd binary | ||
*.psb binary | ||
*.qt binary | ||
*.so binary | ||
*.swf binary | ||
*.tga binary | ||
*.tif binary | ||
*.tiff binary | ||
*.ttf binary | ||
*.TTF binary | ||
*.unitypackage binary | ||
*.unityPackage binary | ||
*.wav binary | ||
*.wmv binary | ||
*.zip binary | ||
*.ZIP binary | ||
|
||
*.txt linguist-detectable | ||
# Collapse Unity-generated files on GitHub | ||
*.asset linguist-generated | ||
*.mat linguist-generated | ||
*.meta linguist-generated | ||
*.prefab linguist-generated | ||
*.unity linguist-generated | ||
|
||
#*.xml linguist-detectable | ||
*.svg linguist-detectable | ||
# ONLY INCLUDE IF USING GIT LFS ------------- | ||
|
||
*.html linguist-detectable=false | ||
# 3D modelsd | ||
*.3dm filter=lfs diff=lfs merge=lfs -text | ||
*.3ds filter=lfs diff=lfs merge=lfs -text | ||
*.blend filter=lfs diff=lfs merge=lfs -text | ||
*.c4d filter=lfs diff=lfs merge=lfs -text | ||
*.collada filter=lfs diff=lfs merge=lfs -text | ||
*.dae filter=lfs diff=lfs merge=lfs -text | ||
*.dxf filter=lfs diff=lfs merge=lfs -text | ||
*.fbx filter=lfs diff=lfs merge=lfs -text | ||
*.jas filter=lfs diff=lfs merge=lfs -text | ||
*.lws filter=lfs diff=lfs merge=lfs -text | ||
*.lxo filter=lfs diff=lfs merge=lfs -text | ||
*.ma filter=lfs diff=lfs merge=lfs -text | ||
*.max filter=lfs diff=lfs merge=lfs -text | ||
*.mb filter=lfs diff=lfs merge=lfs -text | ||
*.obj filter=lfs diff=lfs merge=lfs -text | ||
*.ply filter=lfs diff=lfs merge=lfs -text | ||
*.skp filter=lfs diff=lfs merge=lfs -text | ||
*.stl filter=lfs diff=lfs merge=lfs -text | ||
*.ztl filter=lfs diff=lfs merge=lfs -text | ||
# Audio | ||
*.aif filter=lfs diff=lfs merge=lfs -text | ||
*.aiff filter=lfs diff=lfs merge=lfs -text | ||
*.it filter=lfs diff=lfs merge=lfs -text | ||
*.mod filter=lfs diff=lfs merge=lfs -text | ||
*.mp3 filter=lfs diff=lfs merge=lfs -text | ||
*.ogg filter=lfs diff=lfs merge=lfs -text | ||
*.s3m filter=lfs diff=lfs merge=lfs -text | ||
*.wav filter=lfs diff=lfs merge=lfs -text | ||
*.xm filter=lfs diff=lfs merge=lfs -text | ||
# Fonts | ||
*.otf filter=lfs diff=lfs merge=lfs -text | ||
*.ttf filter=lfs diff=lfs merge=lfs -text | ||
# Images | ||
*.bmp filter=lfs diff=lfs merge=lfs -text | ||
*.exr filter=lfs diff=lfs merge=lfs -text | ||
*.gif filter=lfs diff=lfs merge=lfs -text | ||
*.hdr filter=lfs diff=lfs merge=lfs -text | ||
*.iff filter=lfs diff=lfs merge=lfs -text | ||
*.jpeg filter=lfs diff=lfs merge=lfs -text | ||
*.jpg filter=lfs diff=lfs merge=lfs -text | ||
*.pict filter=lfs diff=lfs merge=lfs -text | ||
*.png filter=lfs diff=lfs merge=lfs -text | ||
*.psd filter=lfs diff=lfs merge=lfs -text | ||
*.psb filter=lfs diff=lfs merge=lfs -text | ||
*.tga filter=lfs diff=lfs merge=lfs -text | ||
*.tif filter=lfs diff=lfs merge=lfs -text | ||
*.tiff filter=lfs diff=lfs merge=lfs -text |