diff --git a/static/docs/get-started/add-files.md b/static/docs/get-started/add-files.md index fe89cb26297..abce11366c2 100644 --- a/static/docs/get-started/add-files.md +++ b/static/docs/get-started/add-files.md @@ -2,24 +2,19 @@ DVC allows storing and versioning data files, ML models, directories, intermediate results with Git, without checking the file contents into Git. -Let's get a sample dataset to play with: +Let's get a dataset example to play with: ```dvc $ mkdir data -$ wget https://data.dvc.org/get-started/data.xml -O data/data.xml +$ cd data +$ dvc get https://github.com/iterative/dataset-registry \ + get-started/data.xml +$ cd .. ``` -
- -### Expand if you're on Windows or having problems downloading from command line - -If you experienced problems using `wget` or you're on Windows and you don't want -to install it, you'll need to use a browser to download `data.xml` and save it -into `data` subdirectory. To download, right-click -[this link](/s3/get-started/data.xml) and click `Save link as` (Chrome) or -`Save object as` (Firefox). - -
+> `dvc get` is a special way to download data artifacts from other +> DVC projects, such as +> [iterative/dataset-registry](https://github.com/iterative/dataset-registry). To take a file (or a directory) under DVC control just run `dvc add` on it. For example: