From 4469ba49389225d35d489c9de9ebd7833bfa004d Mon Sep 17 00:00:00 2001 From: Jephir Date: Mon, 11 Nov 2013 12:05:58 -0500 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 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Unity.gitignore b/Unity.gitignore index 123c9928..682085a5 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -3,8 +3,8 @@ [Oo]bj/ # Autogenerated VS/MD solution and project files -*.csproj -*.unityproj -*.sln -*.suo -*.user +/*.csproj +/*.unityproj +/*.sln +/*.suo +/*.user