Skip to content
Merged
Changes from all 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
11 changes: 8 additions & 3 deletions content/docs/command-reference/exp/show.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ Displays your experiments in a customizable table or
## Synopsis

```usage
usage: dvc exp show [-h] [-q | -v] [-a] [-T] [-A] [-n <num>]
[--no-pager] [--drop <regex>]
usage: dvc exp show [-h] [-q | -v] [-a] [-T] [-A] [--rev <commit>]
[-n <num>] [--no-pager] [--drop <regex>]
[--keep <regex>] [--param-deps]
[--sort-by <metric/param>]
[--sort-order {asc,desc}] [--sha]
Expand Down Expand Up @@ -74,7 +74,12 @@ will be generated using the same data from the table.
- `-A`, `--all-commits` - include experiments derived from all Git commits, as
well as from the last one. This prints all experiments in the project.

- `-n <num>`, `--num <num>` - show the last `num` commits from HEAD.
- `--rev <commit>` - show experiments derived from the specified `<commit>` as
baseline. Defaults to `HEAD` if none of `--rev`, `-a`, `-T`, `-A` is used.

- `-n <num>`, `--num <num>` - show experiments from the last `num` commits
(first parents) starting from the `--rev` baseline. Give a negative value to
include all first-parent commits (similar to `git log -n`).

- `--no-pager` - do not enter the pager screen. Writes the entire table to
standard output. Useful to redirect the output to a file, or use your own
Expand Down