.gitignore for Flax Engine

36 ignore rules for Flax Engine, ready to copy into your repository.

Multi-platform 3D game engine

The complete .gitignore for Flax Engine

# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:30:35 UTC
# Technologies: Flax Engine

### Flax Engine ###
Binaries/
Cache/
# Unity logs
Logs/
Output/
Screenshots/
*.HotReload.*
# C# project file
*.csproj
# Visual Studio solution
*.sln
# Windows thumbnail cache
Thumbs.db
# Object file
*.obj
# Windows executable
*.exe
# Program debug database
*.pdb
# User-specific settings
*.user
*.aps
*.pch
*.vspscc
*_i.c
*_p.c
*.ncb
# Solution user options
*.suo
*.tlb
*.tlh
# Backup file
*.bak
# Cache file
*.cache
*.ilk
# Log file
*.log
[Bb]in
[Dd]ebug*/
# Library file
*.lib
*.sbr
obj/
[Rr]elease*/
_ReSharper*/
[Tt]est[Rr]esult*
.vs/
packages/

What these Flax Engine rules actually ignore

Every pattern below, and why it belongs in your .gitignore.

Ignore Flax project files

Pattern What it ignores
Binaries/ Ignore Flax project files
Cache/ Ignore Flax project files
Logs/ Unity logs
Output/ Ignore Flax project files
Screenshots/ Ignore Flax project files
*.HotReload.* Ignore Flax project files

Ignore Visual Studio project files (generated locally)

Pattern What it ignores
*.csproj C# project file
*.sln Visual Studio solution

Ignore thumbnails created by Windows

Pattern What it ignores
Thumbs.db Windows thumbnail cache

Ignore files built by Visual Studio

Pattern What it ignores
*.obj Object file
*.exe Windows executable
*.pdb Program debug database
*.user User-specific settings
*.aps Ignore files built by Visual Studio
*.pch Ignore files built by Visual Studio
*.vspscc Ignore files built by Visual Studio
*_i.c Ignore files built by Visual Studio
*_p.c Ignore files built by Visual Studio
*.ncb Ignore files built by Visual Studio
*.suo Solution user options
*.tlb Ignore files built by Visual Studio
*.tlh Ignore files built by Visual Studio
*.bak Backup file
*.cache Cache file
*.ilk Ignore files built by Visual Studio
*.log Log file
[Bb]in Ignore files built by Visual Studio
[Dd]ebug*/ Ignore files built by Visual Studio
*.lib Library file
*.sbr Ignore files built by Visual Studio
obj/ Ignore files built by Visual Studio
[Rr]elease*/ Ignore files built by Visual Studio
_ReSharper*/ Ignore files built by Visual Studio
[Tt]est[Rr]esult* Ignore files built by Visual Studio
.vs/ Ignore files built by Visual Studio

Ignore Nuget packages folder

Pattern What it ignores
packages/ Ignore Nuget packages folder

How to use this .gitignore for Flax Engine

  1. Copy the Flax Engine rules above, or download the file directly.
  2. Create a file named .gitignore at the root of your Git repository and paste the rules into it.
  3. If some of those files are already tracked, run git rm -r --cached . then commit again — Git only applies ignore rules to untracked files.
  4. Commit the .gitignore so everyone on the team shares the same rules.

Other Game Engine .gitignore templates

See every Game Engine template