.gitignore
INFO
Contains files and directories that Git should ignore when tracking changes. Typically these fall into the following categories:
- Runtime or virtual environments created by libraries, e.g.
.venvfor Python. - Secrets that must not be committed. In the context of Pepeunit, these are env.json and schema.json; in other repositories,
.envfiles often serve a similar purpose.
Example
gitignore
.idea
.nvim
env.json
schema.json
tmp