.gitignore for Alteryx
20 ignore rules for Alteryx, ready to copy into your repository.
Data analytics platform
The complete .gitignore for Alteryx
# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:33:20 UTC
# Technologies: Alteryx
### Alteryx ###
*.yxdb
*.cydb
*.cyidx
*.rptx
*.vvf
*.aws
*.yxwv
*.yxft
*.yxbe
# Backup file
*.bak
*.pcxml
# Log file
*.log
*.bin
*.yxlang
CASS.ini
*.yxlc
*.slc
*.cylc
*.alc
*.gzlc
What these Alteryx rules actually ignore
Every pattern below, and why it belongs in your .gitignore.
Alteryx Data Files
| Pattern | What it ignores |
|---|---|
*.yxdb |
Alteryx Data Files |
*.cydb |
Alteryx Data Files |
*.cyidx |
Alteryx Data Files |
*.rptx |
Alteryx Data Files |
*.vvf |
Alteryx Data Files |
*.aws |
Alteryx Data Files |
Alteryx Special Files
| Pattern | What it ignores |
|---|---|
*.yxwv |
Alteryx Special Files |
*.yxft |
Alteryx Special Files |
*.yxbe |
Alteryx Special Files |
*.bak |
Backup file |
*.pcxml |
Alteryx Special Files |
*.log |
Log file |
*.bin |
Alteryx Special Files |
*.yxlang |
Alteryx Special Files |
CASS.ini |
Alteryx Special Files |
Alteryx License Files
| Pattern | What it ignores |
|---|---|
*.yxlc |
Alteryx License Files |
*.slc |
Alteryx License Files |
*.cylc |
Alteryx License Files |
*.alc |
Alteryx License Files |
*.gzlc |
Alteryx License Files |
How to use this .gitignore for Alteryx
- Copy the Alteryx 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.