From 50e5714bc41dd1e6c95d1fd31586471a98123560 Mon Sep 17 00:00:00 2001 From: Zshandi Krahn Date: Fri, 23 Feb 2024 09:04:07 -0800 Subject: [PATCH] Ignore *.tmp files, which are temporary files Godot creates These are temporary files Godot engine creates, which are supposed to be automatically removed, but there can be issues which prevent them from being removed. Although these not being removed is an issue with the engine which may be fixed in the future, I think it would still be a good idea to add them here, in case a different issue occurs that causes them to not be removed. Here is a current issue for this, but in searching I found that there have been other related issues in the past which caused .tmp files to show up. Thus, I think it's a good idea to just add them in here: https://github.com/godotengine/godot/issues/82270 --- Godot.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Godot.gitignore b/Godot.gitignore index d9aac213..8f7db87b 100644 --- a/Godot.gitignore +++ b/Godot.gitignore @@ -5,6 +5,7 @@ .import/ export.cfg export_presets.cfg +*.tmp # Imported translations (automatically generated from CSV files) *.translation