Quellcode durchsuchen

Resolve review comments which required edits and re-writes

Puneetha Pai vor 4 Jahren
Ursprung
Commit
12e2510f99

+ 1 - 1
pages/common/dvc-checkout.md

@@ -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:

+ 0 - 4
pages/common/dvc-dag.md

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

+ 3 - 6
pages/common/dvc-freeze.md

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

+ 1 - 1
pages/common/dvc-gc.md

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

+ 1 - 5
pages/common/dvc-unfreeze.md

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