mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-04 20:43:59 +00:00
43 lines
750 B
Plaintext
43 lines
750 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://doc.dvc.org/command-reference>.
|
|
|
|
- Initialize a new DVC project:
|
|
|
|
`dvc init`
|
|
|
|
- Configure a remote storage location:
|
|
|
|
`dvc remote add {{storage_name}} {{url}}`
|
|
|
|
- Add one or more data files or directories to tracking:
|
|
|
|
`dvc add {{path/to/file_or_directory}}`
|
|
|
|
- Show project status:
|
|
|
|
`dvc status`
|
|
|
|
- Upload tracked files to remote storage:
|
|
|
|
`dvc push`
|
|
|
|
- Download tracked files from remote storage:
|
|
|
|
`dvc pull`
|
|
|
|
- Display help:
|
|
|
|
`dvc {{[-h|--help]}}`
|
|
|
|
- Display version:
|
|
|
|
`dvc --version`
|