Created
August 30, 2015 16:21
-
-
Save Shogan/dad6786c58c5ad88e0ec to your computer and use it in GitHub Desktop.
Unity3D .gitignore for team collaboration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Unity generated and a few customs # | |
# ================================= # | |
Temp/* | |
Library/* | |
Build/* | |
Obj/* | |
WebBuild/* | |
WindowsBuild/* | |
# ===================================== # | |
# Visual Studio / MonoDevelop generated # | |
# ===================================== # | |
ExportedObj/* | |
*.svd | |
*.userprefs | |
*.csproj | |
*.pidb | |
*.suo | |
*.sln | |
*.user | |
*.unityproj | |
*.booproj | |
*.log | |
# Ignore UnityVS so users can use different versions | |
Assets/UnityVS/* | |
#ignoring pidb, they are just code completion caching data according to: | |
# http://stackoverflow.com/questions/1022111/what-are-monodevelops-pidb-files | |
*.pidb | |
*.userprefs | |
# ============ # | |
# OS generated # | |
# ============ # | |
.DS_Store | |
.DS_Store? | |
._* | |
.Spotlight-V100 | |
.Trashes | |
Icon? | |
ehthumbs.db | |
Thumbs.db |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment