LinuxCommandLibrary

dvc-checkout

Checkout data files and directories from cache.

TLDR

Checkout the latest version of all target files and directories

$ dvc checkout
copy


Checkout the latest version of a specified target
$ dvc checkout [target]
copy


Checkout a specific version of a target from a different Git commit/tag/branch
$ git checkout [commit_hash|tag|branch] [target] && dvc checkout [target]
copy

Copied to clipboard