Last active
April 9, 2017 13:08
-
-
Save thebeardphantom/982bab3b026571ab7970 to your computer and use it in GitHub Desktop.
Unity GitIgnore
This file contains hidden or 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
# Ignore everything | |
/* | |
/*/ | |
# Inverse ignore some stuff | |
!/Assets/ | |
!/ProjectSettings/ | |
!.gitignore | |
# OS Stuff | |
.DS_Store | |
._* | |
.Spotlight-V100 | |
.Trashes | |
ehthumbs.db | |
Thumbs.db | |
$RECYCLE.BIN/ | |
Desktop.ini |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@GeekWithALife: I'm guessing it's so those OS-generated files will be still be ignored inside the inverse-ignored
Assets
andProjectSettings
folders.