.gitignore for Opa
11 ignore rules for Opa, ready to copy into your repository.
Language for web applications
The complete .gitignore for Opa
# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:28:52 UTC
# Technologies: Opa
### Opa ###
_build
_tracks
opa-debug-js
# Windows executable
*.exe
*.opp
*.opx
*.opx.broken
*.dump
*.api
*.api-txt
# Log file
*.log
What these Opa rules actually ignore
Every pattern below, and why it belongs in your .gitignore.
General
| Pattern | What it ignores |
|---|---|
_build |
General |
_tracks |
General |
opa-debug-js |
General |
*.exe |
Windows executable |
*.opp |
General |
*.opx |
General |
*.opx.broken |
General |
*.dump |
General |
*.api |
General |
*.api-txt |
General |
*.log |
Log file |
How to use this .gitignore for Opa
- Copy the Opa 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.