← Back to context

Comment by baq

2 months ago

It’s one of the core features that rebases, including branch names (bookmarks in jj) work ‘correctly’. You can rebase whole dags, including merges, with multiple named heads with just one jj rebase -b.

To expand: In jj, bookmarks point to "changes," not commits. Rebases, history manipulations, etc. preserve change ID, so this "just works."

note that bookmarks don't float, unlike git branches, so if your pattern is to produce a lot of commits, you'll want something to keep your jj bookmarks pointing to the top of your pile of commits.

this is less of a problem if you're more into the 1 change == 1 commit workflow.

  • There's a very common alias `jj tug` for this case:

      tug = ["bookmark", "move", "--from", "heads(::@- & bookmarks())", "--to", "@-"]
    

    It moves the nearest bookmark to the commit before the current one (which should be your working commit).

    • This looks like any other git arcane incantation. If this is a common pattern and jj aims to make things easier, should probably be part of the core commands, no?

      1 reply →

    • Thanks, I replaced my Frankenstein's monster of a parsing pipeline with this, very useful!