.gitignore for Logtalk
11 ignore rules for Logtalk, ready to copy into your repository.
Object-oriented logic programming language
The complete .gitignore for Logtalk
# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:29:56 UTC
# Technologies: Logtalk
### Logtalk ###
.lgt_tmp/
lgt_tmp/
logtalk_tester_logs/
logtalk_doclet_logs/
.pl-history
# Compiler output
*.out
*.xwam
*.qo
*.ql
*.itf
*.po
What these Logtalk rules actually ignore
Every pattern below, and why it belongs in your .gitignore.
Logtalk temporary file directories
| Pattern | What it ignores |
|---|---|
.lgt_tmp/ |
Logtalk temporary file directories |
lgt_tmp/ |
Logtalk temporary file directories |
Logtalk default unit testing and doclet results and logs directories
| Pattern | What it ignores |
|---|---|
logtalk_tester_logs/ |
Logtalk default unit testing and doclet results and logs directories |
logtalk_doclet_logs/ |
Logtalk default unit testing and doclet results and logs directories |
.pl-history |
backend Prolog compiler temporary files |
*.out |
Compiler output |
*.xwam |
Logtalk default unit testing and doclet results and logs directories |
*.qo |
Logtalk default unit testing and doclet results and logs directories |
*.ql |
Logtalk default unit testing and doclet results and logs directories |
*.itf |
Logtalk default unit testing and doclet results and logs directories |
*.po |
Logtalk default unit testing and doclet results and logs directories |
How to use this .gitignore for Logtalk
- Copy the Logtalk 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.