From b95ce4a9e333749770b7e3ee6a674cee6171bfbd Mon Sep 17 00:00:00 2001 From: Jorge Orpinel Date: Tue, 4 Aug 2020 23:37:41 -0500 Subject: [PATCH] cases: fix Automating capturing section of versioning tutorial per https://github.com/iterative/dvc.org/issues/1507#issuecomment-662913116 --- .../use-cases/versioning-data-and-model-files/tutorial.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/content/docs/use-cases/versioning-data-and-model-files/tutorial.md b/content/docs/use-cases/versioning-data-and-model-files/tutorial.md index d08b6fe526..ad8c5a628e 100644 --- a/content/docs/use-cases/versioning-data-and-model-files/tutorial.md +++ b/content/docs/use-cases/versioning-data-and-model-files/tutorial.md @@ -309,11 +309,13 @@ When you have a script that takes some data as an input and produces other data > If you tried the commands in the > [Switching between workspace versions](#switching-between-workspace-versions) -> section, go back to the master branch code and data with: +> section, go back to the master branch code and data, and remove the +> `model.h5.dvc` file with: > > ```dvc > $ git checkout master > $ dvc checkout +> $ dvc remove model.h5.dvc > ``` ```dvc