← 返回命令列表

Linux command

jj-bisect 命令

文件

复制后可按需替换文件名、目录或参数。

常用示例

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

说明

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.

参数

start
Begin bisect session.
good _revision_
Mark revision as good.
bad _revision_
Mark revision as bad.
reset
End bisect session.
skip
Skip current revision.

FAQ

What is the jj-bisect command used for?

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.

How do I run a basic jj-bisect example?

Run `jj bisect start` in a terminal, then adjust file names, paths, flags, or remote targets for your system.

What does start do in jj-bisect?

Begin bisect session.