From c344a0edb1e33a74f0fe48ebda1063ecbb7e6194 Mon Sep 17 00:00:00 2001 From: Laurensius Kevin Setiadi Date: Mon, 5 Jul 2021 09:43:46 +0700 Subject: [PATCH] Repo Init Signed-off-by: Laurensius Kevin Setiadi --- .gitattributes | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++ .gitignore | 58 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 127 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..67acbe9 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,69 @@ +# Macro for all binary files that should use Git LFS. +[attr]lfs -text filter=lfs diff=lfs merge=lfs + +# Default to auto-normalized line endings. +* text=auto + +# Image +*.jpg lfs +*.jpeg lfs +*.png lfs +*.apng lfs +*.atsc lfs +*.gif lfs +*.bmp lfs +*.exr lfs +*.tga lfs +*.tiff lfs +*.tif lfs +*.iff lfs +*.pict lfs +*.dds lfs +*.xcf lfs +*.leo lfs +*.kra lfs +*.kpp lfs +*.clip lfs +*.webm lfs +*.webp lfs +*.svg lfs +*.svgz lfs +*.psd lfs +*.afphoto lfs +*.afdesign lfs + +# Audio +*.mp3 lfs +*.ogg lfs +*.wav lfs +*.aiff lfs +*.aif lfs +*.mod lfs +*.it lfs +*.s3m lfs +*.xm lfs + +# Video +*.mov lfs +*.avi lfs +*.asf lfs +*.mpg lfs +*.mpeg lfs +*.mp4 lfs +*.flv lfs +*.ogv lfs +*.wmv lfs + +# Executables +*.exe lfs +*.dll lfs +*.so lfs +*.pdb lfs +*.mdb lfs + +# Packaging +*.zip lfs +*.7z lfs +*.gz lfs +*.rar lfs +*.tar lfs \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..29bf790 --- /dev/null +++ b/.gitignore @@ -0,0 +1,58 @@ +# Windows image file caches +Thumbs.db +ehthumbs.db + +# Folder config file +Desktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Windows Installer files +*.cab +*.msi +*.msm +*.msp + +# Windows shortcuts +*.lnk + +# ========================= +# Operating System Files +# ========================= + +# OSX +# ========================= + +.DS_Store +.AppleDouble +.LSOverride + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +# Ren'py + +*.rpy[bc] +*.bak +**/tmp/* +**/log.txt +**/game/saves/* +**/errors.txt +**/traceback.txt +*-dists/* \ No newline at end of file