Renpy Gitignore Verified ⏰ 👑Setting up a .gitignore for your Ren'Py project is essential to keep your repository clean and avoid sharing unnecessary or personal files like saves and logs . Since Ren'Py 7, new projects automatically include a default .gitignore file, but you may need to customize it as your project grows . /renpy/ commit the renpy/ SDK folder. Each developer should install Ren’Py separately. If your project is open source, committing the SDK violates its license. renpy gitignore : These change every time you launch the game or encounter an error . log.txt errors.txt traceback.txt lint.txt Setting up a # macOS System Files .DS_Store .AppleDouble .LSOverride Each developer should install Ren’Py separately Example: Every time you launch your game, Ren'Py compiles your .rpy scripts into .rpyc files. Since these are automatically generated from your text scripts, there is no reason to track them. If you don't ignore them, Git will show "changes" every time you simply run the game to test a line of dialogue. 2. The saves/ Directory |