ok/jj
1
0
Fork 0
forked from mirrors/jj

cli rebase: Move misplaced paragraph, fixup to 8bc3f5fd67

This commit is contained in:
Ilya Grigoriev 2023-10-31 18:40:41 -07:00
parent a3f21f7a9d
commit d2c2c270f8

View file

@ -133,14 +133,14 @@ pub(crate) struct RebaseArgs {
/// Rebase only this revision, rebasing descendants onto this revision's
/// parent(s)
///
/// Unlike `-s` or `-b`, you may `jj rebase -r` a revision `A` onto a
/// descendant of `A`.
///
/// If none of `-b`, `-s`, or `-r` is provided, then the default is `-b @`.
#[arg(long, short)]
revision: Option<RevisionArg>,
/// The revision(s) to rebase onto (can be repeated to create a merge
/// commit)
///
/// Unlike `-s` or `-b`, you may `jj rebase -r` a revision `A` onto a
/// descendant of `A`.
#[arg(long, short, required = true)]
destination: Vec<RevisionArg>,
/// Deprecated. Please prefix the revset with `all:` instead.