jj-operation

manages Jujutsu's operation log

TLDR

List operations
$ jj operation log
Undo last operation
$ jj operation undo
Restore to specific operation
$ jj operation restore [operation-id]
Show operation details
$ jj operation show [operation-id]

SYNOPSIS

jj operation subcommand [options]

DESCRIPTION

jj operation manages Jujutsu's operation log. Every change to the repository is recorded as an operation, enabling undo and time travel. Operations track what commands were run and their effects.

PARAMETERS

log

List operation history.
undo
Undo the last operation.
restore id
Restore repository to operation state.
show id
Show operation details.
abandon id
Abandon old operations.

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-undo(1)