A comprehensive .gitignore

Courtesy of https://github.com/github/gitignore
If your a coder, bookmark that site, as it has standard gitignore setups for many many diffent systems

You may want to add :
Content/StarterContent

# Visual Studio 2015 user specific files
.vs/

# Visual Studio 2015 database file
*.VC.db

# 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/*

# 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/*

# Cache files for the editor to use
DerivedDataCache/*
5 Likes

I wanted to post that as well, saved me some work.
I always look for existing gitignore files on githubs repo first, since it’s usually pretty verbose and comprehensive and thus I was wondering why it wasn’t mentioned in the video.

Thanks for posting this as reference to people who might not know about the repo!

This pretty much answers my question of “There’s no BuildingEscape.VC.db file! Should I get rid of the only VC.db file (Browse.VC.db)?” as a yes.

Thanks.

1 Like

I’m going to take the suggestion from the OP link and add .vs/ to the ignore list. I’ll update this post if it breaks anything.

Privacy & Terms