mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-06 03:44:40 +00:00
35 lines
654 B
Plaintext
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`
|