jj-diffedit

opens a diff editor to interactively modify the changes in a revision

TLDR

Edit revision in diff editor
$ jj diffedit
Edit specific revision
$ jj diffedit -r [revision]
Edit range between revisions
$ jj diffedit --from [rev1] --to [rev2]

SYNOPSIS

jj diffedit [options]

DESCRIPTION

jj diffedit opens a diff editor to interactively modify the changes in a revision. Allows adding, removing, or changing hunks in a commit. The editor shows the diff and saves modifications back to the revision.

PARAMETERS

-r, --revision rev

Revision to edit.
--from rev
Base revision for comparison.
--to rev
Target revision to modify.

INSTALL

sudo pacman -S jujutsu
sudo apk add jujutsu
sudo zypper install jujutsu
brew install jujutsu
nix profile install nixpkgs#jujutsu

SEE ALSO

jj(1), jj-diff(1), jj-split(1)