Skip to content

.gitignore

INFO

Contains files and directories that Git should ignore when tracking changes. Typically these fall into the following categories:

  1. Runtime or virtual environments created by libraries, e.g. .venv for Python.
  2. Secrets that must not be committed. In the context of Pepeunit, these are env.json and schema.json; in other repositories, .env files often serve a similar purpose.

Example

gitignore
.idea
.nvim
env.json
schema.json
tmp