Document the fact that jj rebase accepts multiple -d

It was already mentioned towards the end of the introductory text, but that's
easy to miss.

This also clarifies the doc for `--allow-large-revsets`.
This commit is contained in:
Ilya Grigoriev 2023-02-05 21:25:51 -08:00
parent 7bb7d2bd35
commit f076fae9b5

View file

@ -731,10 +731,11 @@ struct RebaseArgs {
/// parent(s)
#[arg(long, short)]
revision: Option<RevisionArg>,
/// The revision(s) to rebase onto
/// The revision(s) to rebase onto (can be repeated)
#[arg(long, short, required = true)]
destination: Vec<RevisionArg>,
/// Allow revsets expanding to multiple commits in a single argument
/// Allow revsets expanding to multiple commits in a single argument (for
/// those options that can be repeated)
#[arg(long, short = 'L')]
allow_large_revsets: bool,
}