From 2750d3714e673acb73cd6ee50f6cdef4ce04026f Mon Sep 17 00:00:00 2001 From: Sahil Afrid Farookhi Date: Wed, 19 Nov 2025 09:31:08 -0600 Subject: [PATCH] dvc: update page (#19511) --- pages/common/dvc.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/pages/common/dvc.md b/pages/common/dvc.md index 82ed726234..6000dfb731 100644 --- a/pages/common/dvc.md +++ b/pages/common/dvc.md @@ -1,10 +1,18 @@ # dvc -> Data Version Control: like `git` for data. +> Data Version Control system for machine learning projects. > Some subcommands such as `commit` have their own usage documentation. > More information: . -- Execute a DVC subcommand: +- Initialize a new DVC project: + +`dvc init` + +- Add one or more data files or directories to tracking: + +`dvc add {{path/to/file_or_directory}}` + +- Execute a specific subcommand: `dvc {{subcommand}}`