Skip to content

Instantly share code, notes, and snippets.

@renews
Created May 24, 2026 21:23
Show Gist options
  • Select an option

  • Save renews/7eb08c167152b69eb65737e8102af818 to your computer and use it in GitHub Desktop.

Select an option

Save renews/7eb08c167152b69eb65737e8102af818 to your computer and use it in GitHub Desktop.
UE - Git ignore/attributes
# Unreal Engine native file types
*.uasset filter=lfs diff=lfs merge=lfs -text
*.umap filter=lfs diff=lfs merge=lfs -text
# Raw audio
*.wav filter=lfs diff=lfs merge=lfs -text
*.mp3 filter=lfs diff=lfs merge=lfs -text
# Raw 3D models and textures
*.fbx filter=lfs diff=lfs merge=lfs -text
*.obj filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.jpg filter=lfs diff=lfs merge=lfs -text
*.jpeg filter=lfs diff=lfs merge=lfs -text
*.tga filter=lfs diff=lfs merge=lfs -text
*.psd filter=lfs diff=lfs merge=lfs -text
*.exr filter=lfs diff=lfs merge=lfs -text
# -----------------------------------------------------------------------------
# Unreal Engine 5 Default Folders
# -----------------------------------------------------------------------------
Binaries/
Build/
DerivedDataCache/
Intermediate/
Saved/
# Ignore Plugins intermediate/binary files but keep the plugin source
Plugins/*/Binaries/
Plugins/*/Intermediate/
Plugins/*/Saved/
# -----------------------------------------------------------------------------
# IDE and Visual Studio / Rider Files
# -----------------------------------------------------------------------------
.vs/
.vscode/
.idea/
*.sln
*.suo
*.opensdf
*.sdf
*.VC.db
*.VC.opendb
*.code-workspace
*.xcodeproj/
*.xcworkspace/
# -----------------------------------------------------------------------------
# OS Generated Files
# -----------------------------------------------------------------------------
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# -----------------------------------------------------------------------------
# Compiled Object / Executable Files (for C++ projects)
# -----------------------------------------------------------------------------
*.slo
*.lo
*.o
*.obj
*.gch
*.pch
*.so
*.dylib
*.dll
*.mod
*.lai
*.la
*.a
*.lib
*.exe
*.out
*.app
*.ipa
# -----------------------------------------------------------------------------
# Logs and Autosaves
# -----------------------------------------------------------------------------
*.log
Autosaves/
Crashes/
# -----------------------------------------------------------------------------
# Exceptions (Things we DO want to keep in the Build folder)
# -----------------------------------------------------------------------------
!Build/*/
!Build/*/**
!Build/*/PakBlacklist*.txt
!Build/**/*.ico
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment