mirror of
https://github.com/github/gitignore
synced 2024-11-22 11:44:21 +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/
|
.vs/
|
||||||
|
.vsconfig
|
||||||
|
|
||||||
# Compiled Object files
|
# Compiled Object files
|
||||||
*.slo
|
*.slo
|
||||||
@ -47,7 +48,7 @@ SourceArt/**/*.tga
|
|||||||
|
|
||||||
# Binary Files
|
# Binary Files
|
||||||
Binaries/*
|
Binaries/*
|
||||||
Plugins/*/Binaries/*
|
Plugins/**/Binaries/*
|
||||||
|
|
||||||
# Builds
|
# Builds
|
||||||
Build/*
|
Build/*
|
||||||
@ -68,7 +69,7 @@ Saved/*
|
|||||||
|
|
||||||
# Compiled source files for the engine to use
|
# Compiled source files for the engine to use
|
||||||
Intermediate/*
|
Intermediate/*
|
||||||
Plugins/*/Intermediate/*
|
Plugins/**/Intermediate/*
|
||||||
|
|
||||||
# Cache files for the editor to use
|
# Cache files for the editor to use
|
||||||
DerivedDataCache/*
|
DerivedDataCache/*
|
||||||
|
Loading…
Reference in New Issue
Block a user