mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-06 15:26:02 +02:00
Resolve review comments which required edits and re-writes
This commit is contained in:
parent
91e565ba81
commit
12e2510f99
5 changed files with 6 additions and 17 deletions
|
@ -1,6 +1,6 @@
|
||||||
# dvc checkout
|
# dvc checkout
|
||||||
|
|
||||||
> Update data files and directories in the workspace based on current DVC-files.
|
> Checkout data files and directories from cache.
|
||||||
> More information: <https://dvc.org/doc/command-reference/checkout>.
|
> More information: <https://dvc.org/doc/command-reference/checkout>.
|
||||||
|
|
||||||
- Checkout the latest version of all target files and directories:
|
- Checkout the latest version of all target files and directories:
|
||||||
|
|
|
@ -14,7 +14,3 @@
|
||||||
- Export the pipeline in the dot format:
|
- Export the pipeline in the dot format:
|
||||||
|
|
||||||
`dvc dag --dot > {{path/to/pipeline.dot}}`
|
`dvc dag --dot > {{path/to/pipeline.dot}}`
|
||||||
|
|
||||||
- Export pipeline as SVG:
|
|
||||||
|
|
||||||
`dvc dag --dot | dot -Tsvg -o pipeline.svg`
|
|
||||||
|
|
|
@ -1,13 +1,10 @@
|
||||||
# dvc freeze
|
# dvc freeze
|
||||||
|
|
||||||
> Freeze stages in DVC pipeline.
|
> Freeze stages in the DVC pipeline.
|
||||||
> This makes DVC to stop tracking changes in stage dependencies and re-execution untill unfreeze.
|
> This prevents DVC from tracking changes in stage dependencies and re-execution until unfreeze.
|
||||||
|
> See also `dvs unfreeze`.
|
||||||
> More information: <https://dvc.org/doc/command-reference/freeze>.
|
> More information: <https://dvc.org/doc/command-reference/freeze>.
|
||||||
|
|
||||||
- Freeze 1 or more specified stages:
|
- Freeze 1 or more specified stages:
|
||||||
|
|
||||||
`dvc freeze {{stage_name_a}} [{{stage_name_b}} ...]`
|
`dvc freeze {{stage_name_a}} [{{stage_name_b}} ...]`
|
||||||
|
|
||||||
- Unfreeze given stage/s:
|
|
||||||
|
|
||||||
`dvc unfreeze {{stage_name/s}}`
|
|
||||||
|
|
|
@ -17,4 +17,4 @@
|
||||||
|
|
||||||
- Garbage collect from the cache, including a specific cloud remote storage:
|
- Garbage collect from the cache, including a specific cloud remote storage:
|
||||||
|
|
||||||
`dvc gc --all-commits --cloud -r {{remote_name}}`
|
`dvc gc --all-commits --cloud --remote {{remote_name}}`
|
||||||
|
|
|
@ -5,10 +5,6 @@
|
||||||
> See also `dvc freeze`.
|
> See also `dvc freeze`.
|
||||||
> More information: <https://dvc.org/doc/command-reference/unfreeze>.
|
> More information: <https://dvc.org/doc/command-reference/unfreeze>.
|
||||||
|
|
||||||
- Unfreeze given stage/s:
|
- Unfreeze 1 or more specified stages:
|
||||||
|
|
||||||
`dvc unfreeze {{stage_name_a}} [{{stage_name_b}} ...]`
|
`dvc unfreeze {{stage_name_a}} [{{stage_name_b}} ...]`
|
||||||
|
|
||||||
- Freeze given stage/s:
|
|
||||||
|
|
||||||
`dvc freeze {{stage_name/s}}`
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue