jj-bisect

performs binary search through commit history to find which commit introduced

TLDR

Start bisect session
$ jj bisect start
Mark current revision as good
$ jj bisect good
Mark current revision as bad
$ jj bisect bad
Reset bisect session
$ jj bisect reset

SYNOPSIS

jj bisect subcommand [options]

DESCRIPTION

jj bisect performs binary search through commit history to find which commit introduced a bug. Marks commits as good or bad to narrow down the problematic change. Similar to git bisect but integrated with Jujutsu's revision model.

PARAMETERS

start

Begin bisect session.
good [revision]
Mark revision as good.
bad [revision]
Mark revision as bad.
reset
End bisect session.
skip
Skip current revision.

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