WeirdBeardDev

Unity gitignore

Aug 11th, 2019
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. # This .gitignore file should be placed at the root of your Unity project directory
  2.  
  3. /[Ll]ibrary/
  4. /[Tt]emp/
  5. /[Oo]bj/
  6. /[Bb]uild/
  7. /[Bb]uilds/
  8. /[Ll]ogs/
  9.  
  10. # Never ignore Asset meta data
  11. !/[Aa]ssets/**/*.meta
  12.  
  13. # Uncomment this line if you wish to ignore the asset store tools plugin
  14. # /[Aa]ssets/AssetStoreTools*
  15.  
  16. # TextMesh Pro files
  17. [Aa]ssets/TextMesh*Pro/
  18.  
  19. # Visual Studio cache directory
  20. .vs/
  21.  
  22. # Gradle cache directory
  23. .gradle/
  24.  
  25. # Autogenerated VS/MD/Consulo solution and project files
  26. ExportedObj/
  27. .consulo/
  28. *.csproj
  29. *.unityproj
  30. *.sln
  31. *.suo
  32. *.tmp
  33. *.user
  34. *.userprefs
  35. *.pidb
  36. *.booproj
  37. *.svd
  38. *.pdb
  39. *.mdb
  40. *.opendb
  41. *.VC.db
  42.  
  43. # Unity3D generated meta files
  44. *.pidb.meta
  45. *.pdb.meta
  46. *.mdb.meta
  47.  
  48. # Unity3D generated file on crash reports
  49. sysinfo.txt
  50.  
  51. # Builds
  52. *.apk
  53. *.unitypackage
  54.  
  55. # Crashlytics generated file
  56. crashlytics-build.properties
Add Comment
Please, Sign In to add comment