jj-squash
combines a commit's changes into its parent in Jujutsu
TLDR
Squash into parent
$ jj squash
Squash specific revision into parent$ jj squash -r [revision]
Squash interactively$ jj squash -i
Squash into specific destination$ jj squash --into [destination]
SYNOPSIS
jj squash [options]
DESCRIPTION
jj squash combines a commit's changes into its parent in Jujutsu. The squashed commit becomes empty and can be abandoned. Use -i to select which changes to squash.
PARAMETERS
-r, --revision rev
Revision to squash.--into rev
Destination commit.-i, --interactive
Select changes interactively.-m, --message msg
New commit message.
SEE ALSO
jj(1), jj-abandon(1)
