Understanding Jujutsu bookmarks

46 points by matklad


dsp

Side note: I am pretty sure they are heavily inspired by Mercurial Bookmarks (which I wrote).

blinry

I recently learned about jj git push --named, which allows you to create a new bookmark and push it in one step!

You need to specify the name of the new bookmark, as well as the target revision. I often use a command like

jj git push --named my-new-feature=@-

to create a bookmark pointing to the parent revision, and push it. It makes me very happy! :)

JohnBlund

In my experience with jj, I have had no use for bookmarks other than for interacting with Git

Tagging release commits seems like a reasonable one.