HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

jj bookmark — Manage bookmarks in a `jj` repository. When using a Git backend, bookmarks correspond to Git branche

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandclibookmarksmanagewhenusingjj bookmarkrepository

Problem

How to use the jj bookmark command: Manage bookmarks in a jj repository. When using a Git backend, bookmarks correspond to Git branches. More information: <https://docs.jj-vcs.dev/latest/cli-reference/#jj-bookmark>.

Solution

jj bookmark — Manage bookmarks in a jj repository. When using a Git backend, bookmarks correspond to Git branches. More information: <https://docs.jj-vcs.dev/latest/cli-reference/#jj-bookmark>.

Create a new bookmark at the given revision:
jj {{[b|bookmark]}} {{[c|create]}} {{[-r|--revision]}} {{revision}} {{name}}


List all existing bookmarks and their targets:
jj {{[b|bookmark]}} {{[l|list]}}


Move an existing bookmark to another revision:
jj {{[b|bookmark]}} {{[m|move]}} {{[-t|--to]}} {{revision}} {{name}}


Track given remote bookmarks:
jj {{[b|bookmark]}} {{[t|track]}} {{name}}@{{remote}}


Delete a bookmark, and propagate the deletion to remotes on the next push:
jj {{[b|bookmark]}} {{[d|delete]}} {{name}}


Forget a bookmark locally, without marking its deletion to be pushed:
jj {{[b|bookmark]}} {{[f|forget]}} {{name}}

Code Snippets

Create a new bookmark at the given revision

jj {{[b|bookmark]}} {{[c|create]}} {{[-r|--revision]}} {{revision}} {{name}}

List all existing bookmarks and their targets

jj {{[b|bookmark]}} {{[l|list]}}

Move an existing bookmark to another revision

jj {{[b|bookmark]}} {{[m|move]}} {{[-t|--to]}} {{revision}} {{name}}

Track given remote bookmarks

jj {{[b|bookmark]}} {{[t|track]}} {{name}}@{{remote}}

Delete a bookmark, and propagate the deletion to remotes on the next push

jj {{[b|bookmark]}} {{[d|delete]}} {{name}}

Context

tldr-pages: common/jj bookmark

Revisions (0)

No revisions yet.