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: replace stage file example in /install/completion, fix typos found in review #1766

Merged
merged 10 commits into from
Sep 13, 2020
2 changes: 1 addition & 1 deletion content/docs/command-reference/dag.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ restore one or more pipelines later (see `dvc repro`).

## Options

- `--full` - show full DAG that the `target` stage belongs too, instead of
- `--full` - show full DAG that the `target` stage belongs to, instead of
showing only its ancestors.

- `--dot` - show DAG in
Expand Down
2 changes: 1 addition & 1 deletion content/docs/command-reference/freeze.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ foo.dvc:
```

DVC notices that `foo` changed due to the `foo.dvc` file that tracks this file
(as `outs`), but the `make_copy` stage no longer records the change among it's
(as `outs`), but the `make_copy` stage no longer records the change among its
`deps`.

> You can use `dvc unfreeze` to go back to the regular project status.
2 changes: 1 addition & 1 deletion content/docs/command-reference/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ $ git tag

These tags are used to mark points in the development of the project, and to
document specific experiments conducted in it. To take a look at one, we
checkout the `6-featurization` tag:
checkout the `7-ml-pipeline` tag:
jorgeorpinel marked this conversation as resolved.
Show resolved Hide resolved

```dvc
$ git checkout 7-ml-pipeline
Expand Down
4 changes: 2 additions & 2 deletions content/docs/command-reference/unfreeze.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ $ dvc run -n make_copy -d foo -o bar cp foo bar
> See `dvc run` for more details.

Then, let's change the file `foo` that the stage `make_copy` depends on, and
freeze stage as well, to see what's the project status after that:
freeze the stage as well, to see what's the project status after that:

```dvc
$ echo zoo > foo
Expand All @@ -61,7 +61,7 @@ foo.dvc:
```

DVC notices that `foo` changed due to the `foo.dvc` file that tracks this file
(as `outs`), but the `make_copy` stage doesn't records the change among it's
(as `outs`), but the `make_copy` stage doesn't record the change among its
dependencies. Run `dvc unfreeze` to get the regular/full project status:

```dvc
Expand Down
5 changes: 3 additions & 2 deletions content/docs/install/completion.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,13 @@ run -- Generate a stage file from a command and execute the command.

Depending on what you typed on the command line so far, it completes:

- Available DVC commands.
- Available DVC commands and subcommands. For example, `dvc plots` completes
with `diff`, `modify`, and `show`.
- Options (flags) that are available for a particular command.
- File names that make sense in a given context, such as using them as a target
for some commands.
- Values for certain command arguments. For example, `dvc repro` completes with
stage files to reproduce.
existing files to use as targets.

## What shell do you have?

Expand Down