.gitignore for CFWheels
5 ignore rules for CFWheels, ready to copy into your repository.
ColdFusion framework
The complete .gitignore for CFWheels
# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:30:25 UTC
# Technologies: CFWheels
### CFWheels ###
plugins/**/*
files
db/sql
javascripts/bundles
stylesheets/bundles
What these CFWheels rules actually ignore
Every pattern below, and why it belongs in your .gitignore.
General
| Pattern | What it ignores |
|---|---|
plugins/**/* |
unpacked plugin folders |
files |
files directory where uploads go |
DBMigrate plugin: generated SQL
| Pattern | What it ignores |
|---|---|
db/sql |
DBMigrate plugin: generated SQL |
AssetBundler plugin: generated bundles
| Pattern | What it ignores |
|---|---|
javascripts/bundles |
AssetBundler plugin: generated bundles |
stylesheets/bundles |
AssetBundler plugin: generated bundles |
How to use this .gitignore for CFWheels
- Copy the CFWheels 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.