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) /// parent(s)
#[arg(long, short)] #[arg(long, short)]
revision: Option<RevisionArg>, revision: Option<RevisionArg>,
/// The revision(s) to rebase onto /// The revision(s) to rebase onto (can be repeated)
#[arg(long, short, required = true)] #[arg(long, short, required = true)]
destination: Vec<RevisionArg>, 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')] #[arg(long, short = 'L')]
allow_large_revsets: bool, allow_large_revsets: bool,
} }