diff --git a/pages/common/dvc.md b/pages/common/dvc.md index 6000dfb731b990..65a59578727d50 100644 --- a/pages/common/dvc.md +++ b/pages/common/dvc.md @@ -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: