diff options
author | Calem Bendell <calem.j.bendell@gmail.com> | 2016-11-02 11:48:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-02 11:48:05 -0400 |
commit | 548fb984f7173dea0fbd572ef0ef3784019100c0 (patch) | |
tree | 95919378f19726d327d21557c947f941b9eef1c5 | |
parent | 0f88fa75def7ed7d96935b8630793e51953df9b0 (diff) | |
download | gitignore-548fb984f7173dea0fbd572ef0ef3784019100c0.tar.gz gitignore-548fb984f7173dea0fbd572ef0ef3784019100c0.zip |
add the *.VC.db to unreal engine ignore
as of visual studio 2015 update 2 this file stores the intellisense database.
this file is typically huge and shouldn't be included in a repository.
-rw-r--r-- | UnrealEngine.gitignore | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/UnrealEngine.gitignore b/UnrealEngine.gitignore index be0e4913..beec7b91 100644 --- a/UnrealEngine.gitignore +++ b/UnrealEngine.gitignore @@ -1,6 +1,9 @@ # Visual Studio 2015 user specific files .vs/ +# Visual Studio 2015 database file +*.VC.db + # Compiled Object files *.slo *.lo |