.gitignore for IAR EWARM
6 ignore rules for IAR EWARM, ready to copy into your repository.
IAR for ARM processors
The complete .gitignore for IAR EWARM
# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:34:06 UTC
# Technologies: IAR EWARM
### IAR EWARM ###
EWARM/**/Obj
EWARM/**/List
EWARM/**/Exe
*.dep
*.ewt
EWARM/settings
What these IAR EWARM rules actually ignore
Every pattern below, and why it belongs in your .gitignore.
EWARM/Config2/Obj /List /Exe
| Pattern | What it ignores |
|---|---|
EWARM/**/Obj |
EWARM/Config2/Obj /List /Exe |
EWARM/**/List |
EWARM/Config2/Obj /List /Exe |
EWARM/**/Exe |
EWARM/Config2/Obj /List /Exe |
Autogenerated project files
| Pattern | What it ignores |
|---|---|
*.dep |
Autogenerated project files |
*.ewt |
Autogenerated project files |
Autogenerated folder for debugger
| Pattern | What it ignores |
|---|---|
EWARM/settings |
Autogenerated folder for debugger |
How to use this .gitignore for IAR EWARM
- Copy the IAR EWARM 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.