1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 09:26:01 +02:00

Resolve review comments which required edits and re-writes

This commit is contained in:
Puneetha Pai 2020-07-31 21:02:51 +05:30 committed by Starbeamrainbowlabs
parent 91e565ba81
commit 12e2510f99
5 changed files with 6 additions and 17 deletions

View file

@ -1,6 +1,6 @@
# 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>.
- Checkout the latest version of all target files and directories:

View file

@ -14,7 +14,3 @@
- Export the pipeline in the dot format:
`dvc dag --dot > {{path/to/pipeline.dot}}`
- Export pipeline as SVG:
`dvc dag --dot | dot -Tsvg -o pipeline.svg`

View file

@ -1,13 +1,10 @@
# dvc freeze
> Freeze stages in DVC pipeline.
> This makes DVC to stop tracking changes in stage dependencies and re-execution untill unfreeze.
> Freeze stages in the DVC pipeline.
> 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>.
- Freeze 1 or more specified stages:
`dvc freeze {{stage_name_a}} [{{stage_name_b}} ...]`
- Unfreeze given stage/s:
`dvc unfreeze {{stage_name/s}}`

View file

@ -17,4 +17,4 @@
- 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}}`

View file

@ -5,10 +5,6 @@
> See also `dvc freeze`.
> 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}} ...]`
- Freeze given stage/s:
`dvc freeze {{stage_name/s}}`