From 97a1ee6efcc2e2bd0369c2ca5d0f752257fdb8c7 Mon Sep 17 00:00:00 2001 From: Yun Zhi Lin Date: Tue, 10 Jan 2023 23:15:50 +1100 Subject: [PATCH] Ignore Plugins/**/ folders and vsconfig The current ignore would not cater for `Intermediate` and `Binaries` folder within second level plugins such as `Plugins/GameFeatures/MyLyraFeaturePlugin` . Hence the ignore pattern should be `Plugins/**/` Also .vsconfig should be ignored and the `Visual Studio 2015` comment is out of date. --- UnrealEngine.gitignore | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/UnrealEngine.gitignore b/UnrealEngine.gitignore index 6582eaf9..dc34efe5 100644 --- a/UnrealEngine.gitignore +++ b/UnrealEngine.gitignore @@ -1,5 +1,6 @@ -# Visual Studio 2015 user specific files +# Visual Studio user specific files .vs/ +.vsconfig # Compiled Object files *.slo @@ -47,7 +48,7 @@ SourceArt/**/*.tga # Binary Files Binaries/* -Plugins/*/Binaries/* +Plugins/**/Binaries/* # Builds Build/* @@ -68,7 +69,7 @@ Saved/* # Compiled source files for the engine to use Intermediate/* -Plugins/*/Intermediate/* +Plugins/**/Intermediate/* # Cache files for the editor to use DerivedDataCache/*