.gitignore for LabVIEW
10 ignore rules for LabVIEW, ready to copy into your repository.
Graphical programming environment
The complete .gitignore for LabVIEW
# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:28:52 UTC
# Technologies: LabVIEW
### LabVIEW ###
*.lvlibp
*.llb
*.aliases
*.lvlps
.cache/
# Dynamic link library
*.dll
# Shared object
*.so
# Versioned shared object
*.so.*
# macOS dynamic library
*.dylib
# Windows executable
*.exe
What these LabVIEW rules actually ignore
Every pattern below, and why it belongs in your .gitignore.
Libraries
| Pattern | What it ignores |
|---|---|
*.lvlibp |
Libraries |
*.llb |
Libraries |
Metadata
| Pattern | What it ignores |
|---|---|
*.aliases |
Metadata |
*.lvlps |
Metadata |
.cache/ |
Metadata |
Shared objects (inc. Windows DLLs)
| Pattern | What it ignores |
|---|---|
*.dll |
Dynamic link library |
*.so |
Shared object |
*.so.* |
Versioned shared object |
*.dylib |
macOS dynamic library |
Executables
| Pattern | What it ignores |
|---|---|
*.exe |
Windows executable |
How to use this .gitignore for LabVIEW
- Copy the LabVIEW 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.