Skip to content

Commit

Permalink
cli: split: remove deprecated --siblings options
Browse files Browse the repository at this point in the history
This has been replaced by the `--parallelize` option in a9953b3.
  • Loading branch information
bnjmnt4n committed Jan 4, 2025
1 parent 62c1c48 commit 6ddc5a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
* The deprecated `-l` short alias for `--limit` in `jj log`, `jj op log`
and `jj obslog` has been removed. The `-n` short alias can be used instead.

* The deprecated `--siblings` options for `jj split` has been removed.
`jj split --parallel` can be used instead.

### Deprecations

### New features
Expand Down
3 changes: 1 addition & 2 deletions cli/src/commands/split.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,7 @@ pub(crate) struct SplitArgs {
revision: RevisionArg,
/// Split the revision into two parallel revisions instead of a parent and
/// child
// TODO: Delete `--siblings` alias in jj 0.25+
#[arg(long, short, alias = "siblings")]
#[arg(long, short)]
parallel: bool,
/// Files matching any of these filesets are put in the first commit
#[arg(
Expand Down

0 comments on commit 6ddc5a7

Please sign in to comment.