Skip to content
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

docs: update bad undo-add links #1823

Merged
merged 5 commits into from
Sep 29, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/docs/command-reference/remove.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ Note that in the case of `.dvc` file `targets`, the tracked files or directories
`dvc gc`). However, remember to run `dvc push` to save the files you actually
want to use or share in the future.

Refer to [Updating Tracked Files](/doc/user-guide/updating-tracked-files) to see
how it can be used to replace or modify files that are tracked by DVC.
Refer to [Updating Tracked Files](/doc/user-guide/how-to/updated-tracked-files)
jorgeorpinel marked this conversation as resolved.
Show resolved Hide resolved
to see how it can be used to replace or modify files that are tracked by DVC.

## Options

Expand Down
4 changes: 2 additions & 2 deletions content/docs/command-reference/unprotect.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ modifying file links.)
Running `dvc unprotect` guarantees that the target files or directories
(`targets`) in the workspace are physically "unlinked" from the cache and can be
safely updated. Read the
[Update a Tracked File](/doc/user-guide/updating-tracked-files) guide to learn
more on this process.
[Update a Tracked File](/doc/user-guide/how-to/updated-tracked-files) guide to
jorgeorpinel marked this conversation as resolved.
Show resolved Hide resolved
learn more on this process.

`dvc unprotect` can be an expensive operation (involves copying data). Check
first whether your task matches one of the cases that are considered safe:
Expand Down
10 changes: 5 additions & 5 deletions content/docs/user-guide/large-dataset-optimization.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ efficiency:

> DVC avoids `symlink` and `hardlink` types by default to protect user from
> accidental cache corruption. Refer to the
> [Update a Tracked File](/doc/user-guide/updating-tracked-files) guide to learn
> more.
> [Update a Tracked File](/doc/user-guide/how-to/updated-tracked-files) guide to
jorgeorpinel marked this conversation as resolved.
Show resolved Hide resolved
> learn more.

## Configuring DVC cache file link type

Expand All @@ -117,9 +117,9 @@ $ dvc config cache.type hardlink,symlink
> Refer to `dvc config cache` for more details.

Note that with this `cache.type`, your workspace files will be in read-only mode
in order to protect the cache from corruption. Please refer to the
[Update a Tracked File](/doc/user-guide/updating-tracked-files) on how to manage
tracked files under these cache configurations.
in order to protect the cache from corruption. Please refer to
[Update a Tracked File](/doc/user-guide/how-to/updated-tracked-files) on how to
jorgeorpinel marked this conversation as resolved.
Show resolved Hide resolved
manage tracked files under these cache configurations.

To make sure that the data files in the workspace are consistent with the
<abbr>project</abbr>'s `cache.type` config value, you may use
Expand Down