.gitignore for LASAL
31 ignore rules for LASAL, ready to copy into your repository.
Sigmatek engineering tool for industrial automation
The complete .gitignore for LASAL
# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-09-17 18:11:20 UTC
# Technologies: LASAL
### LASAL ###
# 7-Zip archive
*.7z
# Backup file
*.bak
# ZIP archive
*.zip
!cObjLib.lob
!cObjLib.lba
!**/Class/OPC_UA/**
!**/Class/OPC_UA_Client/**
!**/Class/OPC_UA_Server/**
!**/Class/OPC_UA_ModuleBase/**
!**/Class/OPC_UA_AddressSpace/**
!**/Class/OPC_UA_OpenSSL_v1_1_1/**
# # LASAL ###
**/Runtime
**/BAK
**/Language
**/TempPreview
ProjectInternal
Internal
**/Network/*/*.st
**/Drive/*.st
**/Bootdisk
*.ldi
*.lob
*.lba
*.lcb
# Lock file
*.lock
*.plc
*.lcc
*.lds
*.mme
**/MaeExp.txt
**/MaeExp.xml
What these LASAL rules actually ignore
Every pattern below, and why it belongs in your .gitignore.
General
| Pattern | What it ignores |
|---|---|
*.7z |
7-Zip archive |
*.bak |
Backup file |
*.zip |
ZIP archive |
# LASAL ###
| Pattern | What it ignores |
|---|---|
**/Runtime |
lasal screen/visu runtime folders generated during build |
**/BAK |
# LASAL ### |
**/Language |
# LASAL ### |
**/TempPreview |
# LASAL ### |
ProjectInternal |
lasal class runtime folders generated during build |
Internal |
# LASAL ### |
**/Network/*/*.st |
# LASAL ### |
**/Drive/*.st |
# LASAL ### |
**/Bootdisk |
bootdisk files |
*.ldi |
various filetypes generated at runtime or used for internal backups |
*.lob |
# LASAL ### |
*.lba |
# LASAL ### |
*.lcb |
# LASAL ### |
*.lock |
Lock file |
*.plc |
# LASAL ### |
*.lcc |
# LASAL ### |
*.lds |
# LASAL ### |
*.mme |
tag files generated by the compiler |
**/MaeExp.txt |
# LASAL ### |
**/MaeExp.xml |
# LASAL ### |
SigCLib requires lba and lob files
| Pattern | What it ignores |
|---|---|
!cObjLib.lob |
SigCLib requires lba and lob files |
!cObjLib.lba |
SigCLib requires lba and lob files |
!**/Class/OPC_UA/** |
opc related classes added automatically from lasal instance |
!**/Class/OPC_UA_Client/** |
SigCLib requires lba and lob files |
!**/Class/OPC_UA_Server/** |
SigCLib requires lba and lob files |
!**/Class/OPC_UA_ModuleBase/** |
SigCLib requires lba and lob files |
!**/Class/OPC_UA_AddressSpace/** |
SigCLib requires lba and lob files |
!**/Class/OPC_UA_OpenSSL_v1_1_1/** |
SigCLib requires lba and lob files |
How to use this .gitignore for LASAL
- Copy the LASAL 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.