Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions pages/common/dvc.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,29 @@

`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}}`

- Execute a specific subcommand:
- Show project status:

`dvc {{subcommand}}`
`dvc status`

- Display help:
- Upload tracked files to remote storage:

`dvc {{[-h|--help]}}`
`dvc push`

- Display help about a specific subcommand:
- Download tracked files from remote storage:

`dvc {{subcommand}} {{[-h|--help]}}`
`dvc pull`

- Display help:

`dvc {{[-h|--help]}}`

- Display version:

Expand Down