.gitignore for PSoC Creator

15 ignore rules for PSoC Creator, ready to copy into your repository.

IDE for Cypress PSoC development

The complete .gitignore for PSoC Creator

# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:33:02 UTC
# Technologies: PSoC Creator

### PSoC Creator ###
*.cywrk.*
*.cyprj.*
Debug/
Release/
Export/
*/codegentemp
*/Generated_Source
*_datasheet.pdf
*_timing.html
*.cycdx
*.cyfit
*.rpt
# Unity data file
*.svd
# Log file
*.log
# ZIP archive
*.zip

What these PSoC Creator rules actually ignore

Every pattern below, and why it belongs in your .gitignore.

Project Settings

Pattern What it ignores
*.cywrk.* Project Settings
*.cyprj.* Project Settings

Generated Assets and Resources

Pattern What it ignores
Debug/ Generated Assets and Resources
Release/ Generated Assets and Resources
Export/ Generated Assets and Resources
*/codegentemp Generated Assets and Resources
*/Generated_Source Generated Assets and Resources
*_datasheet.pdf Generated Assets and Resources
*_timing.html Generated Assets and Resources
*.cycdx Generated Assets and Resources
*.cyfit Generated Assets and Resources
*.rpt Generated Assets and Resources
*.svd Unity data file
*.log Log file
*.zip ZIP archive

How to use this .gitignore for PSoC Creator

  1. Copy the PSoC Creator rules above, or download the file directly.
  2. Create a file named .gitignore at the root of your Git repository and paste the rules into it.
  3. If some of those files are already tracked, run git rm -r --cached . then commit again — Git only applies ignore rules to untracked files.
  4. Commit the .gitignore so everyone on the team shares the same rules.

Other IDE .gitignore templates

See every IDE template