.gitignore for Virtuoso

7 ignore rules for Virtuoso, ready to copy into your repository.

IC design platform

The complete .gitignore for Virtuoso

# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:33:51 UTC
# Technologies: Virtuoso

### Virtuoso ###
# Log file
*.log
panic*.log.*
*.cdslck*
lvsRunDir/*
drcRunDir/*
abstract.log*
abstract.record*

What these Virtuoso rules actually ignore

Every pattern below, and why it belongs in your .gitignore.

Log files

Pattern What it ignores
*.log Log file
panic*.log.* Log files

OpenAccess database lock files

Pattern What it ignores
*.cdslck* OpenAccess database lock files

Run directories for layout vs. schematic and design rule check

Pattern What it ignores
lvsRunDir/* Run directories for layout vs. schematic and design rule check
drcRunDir/* Run directories for layout vs. schematic and design rule check

Abstract generation tool

Pattern What it ignores
abstract.log* Abstract generation tool
abstract.record* Abstract generation tool

How to use this .gitignore for Virtuoso

  1. Copy the Virtuoso rules above, or download the file directly.
  2. Create a file named .gitignore at the root of your Git repository and paste the rules into it.
  3. If some of those files are already tracked, run git rm -r --cached . then commit again — Git only applies ignore rules to untracked files.
  4. Commit the .gitignore so everyone on the team shares the same rules.

Other EDA .gitignore templates

See every EDA template