Files
cheatsheet-tldr/tldr/dvc
2025-11-20 00:20:48 +00:00

35 lines
654 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# dvc
> Data Version Control system for machine learning projects.
> Some subcommands such as `commit` have their own usage documentation.
> More information: <https://dvc.org/doc/command-reference>.
- Initialize a new DVC project:
`dvc init`
- Add one or more data files or directories to tracking:
`dvc add {{path/to/file_or_directory}}`
- Execute a specific subcommand:
`dvc {{subcommand}}`
- Display help:
`dvc {{[-h|--help]}}`
- Display help about a specific subcommand:
`dvc {{subcommand}} {{[-h|--help]}}`
- Display version:
`dvc --version`