Last active
January 24, 2025 18:03
-
Star
(228)
You must be signed in to star a gist -
Fork
(64)
You must be signed in to fork a gist
-
-
Save FullStackForger/20bbf62861394b1a3de0 to your computer and use it in GitHub Desktop.
.gitignore for Unity3d project
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 folders and files | |
### | |
[Aa]ssets/AssetStoreTools* | |
[Bb]uild/ | |
[Ll]ibrary/ | |
[Ll]ocal[Cc]ache/ | |
[Oo]bj/ | |
[Tt]emp/ | |
[Uu]nityGenerated/ | |
# file on crash reports | |
sysinfo.txt | |
# Unity3D generated meta files | |
*.pidb.meta | |
### | |
# VS/MD solution and project files | |
### | |
[Ee]xportedObj/ | |
*.booproj | |
*.csproj | |
*.sln | |
*.suo | |
*.svd | |
*.unityproj | |
*.user | |
*.userprefs | |
*.pidb | |
.DS_Store | |
### | |
# OS generated | |
### | |
.DS_Store | |
.DS_Store? | |
._* | |
.Spotlight-V100 | |
.Trashes | |
Icon? | |
ehthumbs.db | |
Thumbs.db |
omri-mizrahi
commented
Apr 29, 2022
via email
•
Nice, thx :)
Hello, is this .gitignore still up to date or have you made any changes to the one you use now?
thank you, this already helped allot.
Totally missed your message @Ivano-P. I think the best way is to start new github project with Unity .gitignore and possibly add OS related section if you want to.
@FullStackForger thanks, That's what I did.
@Ivano-P Not sure if that will apply for you but I have started to ignore /UserSettings
folder, mainly because wouldn't want to enforce my settings on others and vice-versa.
Oh yes, I will probably do that when I finish my test version and decide to work with a 3d artist, but in my case I use it to switch to my laptop when I'm on the move so having the same settings if what I want.
Thank you!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment