.gitignore for Xojo
9 ignore rules for Xojo, ready to copy into your repository.
Cross-platform development tool
The complete .gitignore for Xojo
# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:32:19 UTC
# Technologies: Xojo
### Xojo ###
Builds*
*.debug
*.debug.app
Debug*.exe
Debug*/Debug*.exe
Debug*/Debug*\ Libs
*.rbuistate
*.xojo_uistate
*.obsolete*
What these Xojo rules actually ignore
Every pattern below, and why it belongs in your .gitignore.
Xojo (formerly REALbasic and Real Studio)
| Pattern | What it ignores |
|---|---|
Builds* |
Xojo (formerly REALbasic and Real Studio) |
*.debug |
Xojo (formerly REALbasic and Real Studio) |
*.debug.app |
Xojo (formerly REALbasic and Real Studio) |
Debug*.exe |
Xojo (formerly REALbasic and Real Studio) |
Debug*/Debug*.exe |
Xojo (formerly REALbasic and Real Studio) |
Debug*/Debug*\ Libs |
Xojo (formerly REALbasic and Real Studio) |
*.rbuistate |
Xojo (formerly REALbasic and Real Studio) |
*.xojo_uistate |
Xojo (formerly REALbasic and Real Studio) |
*.obsolete* |
Xojo (formerly REALbasic and Real Studio) |
How to use this .gitignore for Xojo
- Copy the Xojo rules above, or download the file directly.
- Create a file named .gitignore at the root of your Git repository and paste the rules into it.
- If some of those files are already tracked, run git rm -r --cached . then commit again — Git only applies ignore rules to untracked files.
- Commit the .gitignore so everyone on the team shares the same rules.