From 65bc8a709015c9980ea9580a12ebbab9d7241ba6 Mon Sep 17 00:00:00 2001 From: LotteMakesStuff Date: Sun, 12 May 2019 13:44:32 +0100 Subject: [PATCH] [Unity] ignore Jetbrains plugin folder (#3026) When a Unity project is opened in Jetbrains Rider, it installs a editor plugin into the Assets/Plugins/Editor/Jetbrains folder to manage Unity->Rider integration. This plugins life cycle is managed by your local Rider install and is automatically updated by Rider. It should not be committed to source control. This is documented by Jetbrains here https://www.jetbrains.com/help/rider/Unity.html This change should ignore both the Jetbrains plugin folder and its .meta file correctly. For completeness, it would be nice to also ignore the /.idea*/ settings folder that Rider autogenerates, but i see a PR implementing that change has already been rejected. --- Unity.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Unity.gitignore b/Unity.gitignore index 047a5c37..a79ec04c 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -17,6 +17,9 @@ # TextMesh Pro files [Aa]ssets/TextMesh*Pro/ +# Autogenerated Jetbrains Rider plugin +[Aa]ssets/Plugins/Editor/JetBrains* + # Visual Studio cache directory .vs/