Is there a way to auto hide all the generated files in "Changed Files"?

When I go to check in my files there are always the auto-generated files like the .luac, .spritec, .texturec, .goc, etc… in the changed files. Are those used for any specific purpose that I would need to check them in?

Is there a way I can hide them from showing up in this window?

Hi!

That’s odd, they should be hidden by default. In your project root create a new file called .gitignore add these lines to it

/.internal
/build
.externalToolBuilders
.DS_Store
Thumbs.db
.lock-wscript
*.pyc
.project
.cproject
builtins

I do think that that is the default ignore list for Defold.

3 Likes

It might only be created if there is not already a .gitignore file in the project folder already?