```shell
dvc init
```
```shell
dvc add my_data_folder/dataset.file
```
## Set up a local remote
```shell
dvc remote add -d dropbox /Path/to/my/local/Dropbox/DVC
```
```shell
dvc push
```
## Make local remotes a local config only
The local (Dropbox) remote we created has a local path. Make sure that doesn't get checked in with your repository.
```shell
mv .dvc/config .dvc/config.local
```