.gitignore for V
11 ignore rules for V, ready to copy into your repository.
Simple, fast, safe compiled language
The complete .gitignore for V
# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:28:52 UTC
# Technologies: V
### V ###
# Backup file
*.bak
# Windows executable
*.exe
*.tmp.c
# Dynamic link library
*.dll
*.ilk
# Program debug database
*.pdb
*.exp
# Library file
*.lib
# shared libraries
*.so
# Object file
*.o
# generic executable outputs
*.out
What these V rules actually ignore
Every pattern below, and why it belongs in your .gitignore.
General
| Pattern | What it ignores |
|---|---|
*.bak |
Backup file |
*.exe |
Windows executable |
*.tmp.c |
General |
*.dll |
Dynamic link library |
*.ilk |
General |
*.pdb |
Program debug database |
*.exp |
General |
*.lib |
Library file |
*.so |
shared libraries |
*.o |
Object file |
*.out |
generic executable outputs |
How to use this .gitignore for V
- Copy the V 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.