.gitignore for Racket (Alternative)
6 ignore rules for Racket (Alternative), ready to copy into your repository.
Alternative Racket patterns
The complete .gitignore for Racket (Alternative)
# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:32:06 UTC
# Technologies: Racket (Alternative)
### Racket (Alternative) ###
*.rkt~
*.rkt.bak
# *.rkt#
\
compiled/
*.zo
*.dep
What these Racket (Alternative) rules actually ignore
Every pattern below, and why it belongs in your .gitignore.
DrRacket autosave files
| Pattern | What it ignores |
|---|---|
*.rkt~ |
DrRacket autosave files |
*.rkt.bak |
DrRacket autosave files |
\ |
*.rkt# |
Compiled racket bytecode
| Pattern | What it ignores |
|---|---|
compiled/ |
Compiled racket bytecode |
*.zo |
Compiled racket bytecode |
Dependency tracking files
| Pattern | What it ignores |
|---|---|
*.dep |
Dependency tracking files |
How to use this .gitignore for Racket (Alternative)
- Copy the Racket (Alternative) 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.