mirror of
https://github.com/martinvonz/jj.git
synced 2025-01-12 15:16:35 +00:00
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:
parent
7bb7d2bd35
commit
f076fae9b5
1 changed files with 3 additions and 2 deletions
|
@ -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,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue