From f076fae9b5990e5fa8f4f17982c61833c0b663d9 Mon Sep 17 00:00:00 2001 From: Ilya Grigoriev Date: Sun, 5 Feb 2023 21:25:51 -0800 Subject: [PATCH] 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`. --- src/commands/mod.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/commands/mod.rs b/src/commands/mod.rs index 17610e490..cdbf36f8f 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -731,10 +731,11 @@ struct RebaseArgs { /// parent(s) #[arg(long, short)] revision: Option, - /// The revision(s) to rebase onto + /// The revision(s) to rebase onto (can be repeated) #[arg(long, short, required = true)] destination: Vec, - /// 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, }