.gitignore for TestComplete
5 ignore rules for TestComplete, ready to copy into your repository.
Automated testing tool
The complete .gitignore for TestComplete
# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:28:10 UTC
# Technologies: TestComplete
### TestComplete ###
*.tcCFGExtender
*.tcLS
*.tlb
*.tcLogs
# Backup file
*.bak
What these TestComplete rules actually ignore
Every pattern below, and why it belongs in your .gitignore.
Tester-specific Settings
| Pattern | What it ignores |
|---|---|
*.tcCFGExtender |
Tester-specific Settings |
*.tcLS |
Tester-specific Settings |
Type library declarations
| Pattern | What it ignores |
|---|---|
*.tlb |
Type library declarations |
Log files
| Pattern | What it ignores |
|---|---|
*.tcLogs |
Log files |
Backup files
| Pattern | What it ignores |
|---|---|
*.bak |
Backup file |
How to use this .gitignore for TestComplete
- Copy the TestComplete 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.