# --- Ren'Py Auto-generated Files --- *.rpyc *.rpymc # --- Save Data and Persistent Info --- # These are local to your machine and shouldn't be shared /saves/ /game/saves/ /game/cache/ /game/tl/None/ # --- Build and Distribution Artifacts --- # Created when you export the game for Windows/Mac/Linux /build/ *-dists/ *-dist/ # --- System and IDE Files --- .DS_Store Thumbs.db .vscode/ .idea/ Use code with caution. Detailed Breakdown of What to Ignore 1. Compiled Script Files ( *.rpyc )
# --- IDE & System Files --- # Visual Studio Code .vscode/ *.code-workspace renpy gitignore
Python bytecode left by Ren’Py’s Python modules. Unnecessary and system-specific. # --- Ren'Py Auto-generated Files --- *
.DS_Store Thumbs.db *.swp *.swo *~ .idea/ .vscode/ *.iml Unnecessary and system-specific
build/ dist/ tmp/ android-build/ android-project/ android-*.apk web/ *.app *.dmg *.exe *.zip *.sh *.tar.bz2
: You can use tools like gitignore.io to generate a template by searching for "RenPy," "Python," and your OS .