.gitignore for Red
8 ignore rules for Red, ready to copy into your repository.
Full-stack programming language
The complete .gitignore for Red
# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:29:20 UTC
# Technologies: Red
### Red ###
*.red
crush.dll
crush.dylib
crush.so
quick-test/quick-test.log
quick-test/runnable/
system/tests/source/units/auto-tests/
tests/source/units/auto-tests/
What these Red rules actually ignore
Every pattern below, and why it belongs in your .gitignore.
Red Compiled code
| Pattern | What it ignores |
|---|---|
*.red |
Red Compiled code |
Libraries
| Pattern | What it ignores |
|---|---|
crush.dll |
Libraries |
crush.dylib |
Libraries |
crush.so |
Libraries |
Files generated during test
| Pattern | What it ignores |
|---|---|
quick-test/quick-test.log |
Files generated during test |
quick-test/runnable/ |
Files generated during test |
system/tests/source/units/auto-tests/ |
Files generated during test |
tests/source/units/auto-tests/ |
Files generated during test |
How to use this .gitignore for Red
- Copy the Red 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.