jj-bookmark

manages named references to revisions in Jujutsu

TLDR

Create bookmark at current revision
$ jj bookmark create [name]
Create bookmark at specific revision
$ jj bookmark create [name] -r [revision]
List bookmarks
$ jj bookmark list
Delete bookmark
$ jj bookmark delete [name]
Move bookmark
$ jj bookmark move [name] --to [revision]

SYNOPSIS

jj bookmark subcommand [options]

DESCRIPTION

jj bookmark manages named references to revisions in Jujutsu. Similar to Git branches, bookmarks point to specific commits and can be pushed to/pulled from remotes. Bookmarks follow commits when they are rewritten.

PARAMETERS

-r, --revision rev

Target revision.
--to rev
Destination for move.

SUBCOMMANDS

create name

Create new bookmark.
delete name
Delete bookmark.
list
List all bookmarks.
move name
Move bookmark to different revision.
track
Track remote bookmark.

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-git-push(1)