Last active
December 30, 2020 16:17
-
-
Save marcosecchi/7be2b4e0bae46bbc6469b266fc44e88d to your computer and use it in GitHub Desktop.
Unreal .gitignore file
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
# ### UNREAL ### | |
# Visual Studio 2015 user specific files | |
.vs/ | |
# Compiled Object files | |
*.slo | |
*.lo | |
*.o | |
*.obj | |
# Precompiled Headers | |
*.gch | |
*.pch | |
# Compiled Dynamic libraries | |
*.so | |
*.dylib | |
*.dll | |
# Fortran module files | |
*.mod | |
# Compiled Static libraries | |
*.lai | |
*.la | |
*.a | |
*.lib | |
# Executables | |
*.exe | |
*.out | |
*.app | |
*.ipa | |
# These project files can be generated by the engine | |
*.xcodeproj | |
*.xcworkspace | |
*.sln | |
*.suo | |
*.opensdf | |
*.sdf | |
*.VC.db | |
*.VC.opendb | |
# Precompiled Assets | |
SourceArt/**/*.png | |
SourceArt/**/*.tga | |
# Binary Files | |
Binaries/* | |
Plugins/*/Binaries/* | |
# Builds | |
Build/* | |
# Whitelist PakBlacklist-<BuildConfiguration>.txt files | |
!Build/*/ | |
Build/*/** | |
!Build/*/PakBlacklist*.txt | |
# Don't ignore icon files in Build | |
!Build/**/*.ico | |
# Built data for maps | |
*_BuiltData.uasset | |
# Configuration files generated by the Editor | |
Saved/* | |
# Compiled source files for the engine to use | |
Intermediate/* | |
Plugins/*/Intermediate/* | |
# Cache files for the editor to use | |
DerivedDataCache/* | |
# ### MACOS ### | |
# General | |
.DS_Store | |
.AppleDouble | |
.LSOverride | |
# Icon must end with two \r | |
Icon | |
# Thumbnails | |
._* | |
# Files that might appear in the root of a volume | |
.DocumentRevisions-V100 | |
.fseventsd | |
.Spotlight-V100 | |
.TemporaryItems | |
.Trashes | |
.VolumeIcon.icns | |
.com.apple.timemachine.donotpresent | |
# Directories potentially created on remote AFP share | |
.AppleDB | |
.AppleDesktop | |
Network Trash Folder | |
Temporary Items | |
.apdisk | |
# ### WINDOWS ### | |
# Windows thumbnail cache files | |
Thumbs.db | |
Thumbs.db:encryptable | |
ehthumbs.db | |
ehthumbs_vista.db | |
# Dump file | |
*.stackdump | |
# Folder config file | |
[Dd]esktop.ini | |
# Recycle Bin used on file shares | |
$RECYCLE.BIN/ | |
# Windows Installer files | |
*.cab | |
*.msi | |
*.msix | |
*.msm | |
*.msp | |
# Windows shortcuts | |
*.lnk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment