-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
33 lines (26 loc) · 916 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#this is the git ignore file if you want to use the free Unity
# the ! negates an ignore, so you ignore everything in Library then
#un-ignore the metadata folder and those specific files
#use at your own risk.
#NOTE: this will cause your collaborators to re-import assets
# (previews and cache), but it seems to have no value to keep in source control
Temp/*
Library/*
Build/*
!Library/*.asset
!Library/AssetImportState
!Library/AssetVersioning.db
!Library/BuildPlayer.prefs
!Library/ScriptMapper
!Library/assetservercachev3
!Library/expandedItems
!Library/guidmapper
!Library/unity default resources
!Library/unity editor resources
!Library/metadata/
#ignoring pidb, they are just code completion caching data according to:
# http://stackoverflow.com/questions/1022111/what-are-monodevelops-pidb-files
*.pidb
*.userprefs
# Project ignores, like our High Score super secret password mechanism!
*HSController*