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

cmd-ref: document --keep-going|--ignore-errors in repro #4694

Merged
merged 4 commits into from
Jul 14, 2023
Merged
Changes from 3 commits
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
9 changes: 8 additions & 1 deletion content/docs/command-reference/repro.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ Reproduce complete or partial <abbr>pipelines</abbr> by running their

```usage
usage: dvc repro [-h] [-q | -v] [-f] [-i]
[-s] [-p] [-P] [-R]
[-s] [-p] [-k] [-P] [-R]
[--downstream] [--force-downstream]
[--pull] [--dry] [--allow-missing]
[--glob] [--no-commit] [--no-run-cache]
[--ignore-errors]
[targets [<target> ...]]

positional arguments:
Expand Down Expand Up @@ -188,6 +189,12 @@ final stage.

- `--allow-missing` - skip stages with no other changes than missing data.

- `-k`, `--keep-going` - Continue executing, skipping stages having dependencies
on the failed stage. The other dependencies of the targets will still be
executed.

- `--ignore-errors` - Ignore all errors when executing the stages. Unlike `--keep-going`, stages having dependencies on the failed stage will be executed.

- `-h`, `--help` - prints the usage/help message, and exit.

- `-q`, `--quiet` - do not write anything to standard output. Exit with 0 if all
Expand Down
Loading