Last active
March 25, 2024 19:19
-
-
Save inikitin/b78e62d02d4db9468e5efc9bc4f25d69 to your computer and use it in GitHub Desktop.
.gitignore for Unreal Engine 5 projects
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 Engine 5 specific .gitignore | |
# Unreal Engine project folders # | |
[Bb]uild/ | |
[Bb]uilds/ | |
Binaries/ | |
DerivedDataCache/ | |
Intermediate/ | |
Saved/ | |
Plugins/*/Intermediate/* | |
Crashes/ | |
Autosaves/ | |
# Exceptions | |
!Build/*/PakBlacklist*.txt | |
!Build/**/*.ico | |
# Thumbnails | |
Thumbnails/ | |
# Shader working directory | |
*.usf.log | |
*.ush.log | |
# Generated project files (Visual Studio, XCode, etc.) | |
*.sln | |
*.xcodeproj | |
*.xcworkspace | |
*.uplugin | |
*.user | |
*.userprefs | |
*.pyc | |
*.pyo | |
*.pyd | |
*.swp | |
*.bak | |
*.tmp | |
*.temp | |
*.vs/ | |
*.vscode/ | |
.idea/ | |
*.log | |
*.vsconfig | |
# User Specific Files | |
*.rsuser | |
*.suo | |
*.user | |
*.userosscache | |
*.sln.docstates | |
# CPP Cache Files | |
*.VC.db | |
*.opendb | |
*.opensdf | |
*.sdf | |
# OS generated files | |
# Windows specific | |
Thumbs.db | |
ehthumbs.db | |
Desktop.ini | |
$RECYCLE.BIN/ | |
*.cab | |
*.msi | |
*.msm | |
*.msp | |
*.lnk | |
# macOS specific | |
.DS_Store | |
.DS_Store? | |
.AppleDouble | |
.LSOverride | |
._* | |
.Spotlight-V100 | |
.DocumentRevisions-V100 | |
.Trashes | |
*.lock | |
*.out | |
*.gdb | |
# Linux specific | |
.directory | |
.nfs* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment