mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
27 lines
489 B
Plaintext
27 lines
489 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# dvc
|
|
|
|
> Data Version Control: like `git` for data.
|
|
> Some subcommands such as `commit` have their own usage documentation.
|
|
> More information: <https://dvc.org/doc/command-reference>.
|
|
|
|
- Execute a DVC subcommand:
|
|
|
|
`dvc {{subcommand}}`
|
|
|
|
- Display help:
|
|
|
|
`dvc {{[-h|--help]}}`
|
|
|
|
- Display help about a specific subcommand:
|
|
|
|
`dvc {{subcommand}} {{[-h|--help]}}`
|
|
|
|
- Display version:
|
|
|
|
`dvc --version`
|