mirror of
https://github.com/github/gitignore
synced 2024-11-22 03:34:23 +01:00
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.
This commit is contained in:
parent
4488915eec
commit
97a1ee6efc
@ -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/*
|
||||
|
Loading…
Reference in New Issue
Block a user