diff options
author | Jephir <jephir@jephir.name> | 2013-11-11 12:05:58 -0500 |
---|---|---|
committer | Jephir <jephir@jephir.name> | 2013-11-11 12:09:08 -0500 |
commit | 4469ba49389225d35d489c9de9ebd7833bfa004d (patch) | |
tree | 876a6f488cd876d39ad92711b746ad46e01e5e69 /Unity.gitignore | |
parent | 768534c42f426b3a596437f96142184b1ec51158 (diff) | |
download | gitignore-4469ba49389225d35d489c9de9ebd7833bfa004d.tar.gz gitignore-4469ba49389225d35d489c9de9ebd7833bfa004d.zip |
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.
Diffstat (limited to 'Unity.gitignore')
-rw-r--r-- | Unity.gitignore | 10 |
1 files 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 |