-
Notifications
You must be signed in to change notification settings - Fork 394
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tutorials: confusing code sample and note about .dvc/cache dir #806
Comments
We should def. update the code sample and note though, so it's not confusing. This may affect other docs too. (I think that note is repeated in several places.) |
@shcheklein I confirm :) |
note about .dvc/cache dir (listed in .dvc/.gitignore) for #806
@anferico do you think this version is less confusing? https://dvc-org-pr-810.herokuapp.com/doc/tutorials/deep/preparation Note that the paragraph starting with "After DVC initialization..." I haven't updated yet because it's repeated in 4 different documents, but I will. |
I was following the tutorial at https://dvc.org/doc/tutorials/deep/preparation to start exploring DVC's functionalities. However, when I issue the command
dvc init
inside theclassify/
directory, I don't get the expected results.In fact,
ls -a .dvc
should output the following:./ ../ .gitignore cache/ config
whereas my output is:
./ ../ config .gitignore tmp/
so basically the
cache/
directory doesn't get created, but atmp/
directory does. This wouldn't be a big deal if the tutorial didn't mention that "The .dvc/cache directory is one of the most important parts of any DVC repositories"The text was updated successfully, but these errors were encountered: