Skip to content

Commit

Permalink
get-started: updated add-files to use dvc get
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgeorpinel committed Aug 24, 2019
1 parent 713da9f commit 88b23e0
Showing 1 changed file with 8 additions and 13 deletions.
21 changes: 8 additions & 13 deletions static/docs/get-started/add-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 ..
```

<details>

### 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).

</details>
> `dvc get` is a special way to download <abbr>data artifacts</abbr> 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:
Expand Down

0 comments on commit 88b23e0

Please sign in to comment.