DVC: add pages for sub commands commit, config, dag

This commit is contained in:
Puneetha Pai
2020-07-23 12:21:21 +05:30
committed by Starbeamrainbowlabs
parent 51190d4610
commit e94e07d26d
4 changed files with 71 additions and 2 deletions

20
pages/common/dvc-dag.md Normal file
View File

@@ -0,0 +1,20 @@
# dvc dag
> Visualize the pipeline(s) in dvc.yaml
> More information: <https://dvc.org/doc/command-reference/dag>.
- Visualize entire pipeline:
`dvc dag`
- Visualize pipeline stages up to a target stage:
`dvc dag {{target}}`
- Export pipeline in dot format:
`dvc dag --dot > pipeline.dot`
- Export pipeline as SVG:
`dvc dag --dot | dot -Tsvg -o pipeline.svg`