From 3af51b813dcc62cc0844ab6c5c3420fa773c0ca8 Mon Sep 17 00:00:00 2001 From: Jephir Date: Thu, 1 Nov 2012 09:52:31 -0400 Subject: [PATCH] Prevent Unity .gitignore from ignoring non-Unity project files Unity only generates project files in the top-level directory. However, the current .gitignore will ignore all project files even if they were not generated by Unity. It is sometimes necessary to include non-Unity project files for level editors or other utility projects that have been added to the repository. --- Unity.gitignore | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Unity.gitignore b/Unity.gitignore index 6425e291..0159d273 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -3,6 +3,6 @@ [Oo]bj/ # Autogenerated VS/MD solution and project files -*.csproj -*.unityproj -*.sln +/*.csproj +/*.unityproj +/*.sln