Skip to content

Commit

Permalink
start: use tabs for a Windows command (#3215)
Browse files Browse the repository at this point in the history
* Changed line 168 ~ from rm -f data/... to rm -Force data/...

Received and error while removing the data file. 

Remove-Item : Parameter cannot be processed because the parameter name 'f' is ambiguous. Possible
matches include: -Filter -Force. 

I used Force command to make it work

* Apply suggestions from code review

* Update content/docs/start/data-and-model-versioning.md

* Update content/docs/start/data-and-model-versioning.md

* Update content/docs/start/data-and-model-versioning.md

* Update content/docs/start/data-and-model-versioning.md

Co-authored-by: Jorge Orpinel <[email protected]>
  • Loading branch information
2 people authored and iesahin committed Apr 11, 2022
1 parent df178b7 commit b3e8fad
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions content/docs/start/data-and-model-versioning.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,11 +163,25 @@ run it after `git clone` and `git pull`.
If you've run `dvc push`, you can delete the cache (`.dvc/cache`) and
`data/data.xml` to experiment with `dvc pull`:

<toggle>
<tab title="Mac/Linux">

```dvc
$ rm -rf .dvc/cache
$ rm -f data/data.xml
```

</tab>
<tab title="Windows">

```dvc
$ rmdir .dvc\cache
$ del data\data.xml
```

</tab>
</toggle>

</details>

```dvc
Expand Down

0 comments on commit b3e8fad

Please sign in to comment.