Hacker News new | ask | show | jobs
by pkulak 493 days ago
> Nobody else knows you use `jj`, so no barrier to adoption.

All my PRs now have branches named "push-kjasdfkhdf", so it's not terribly well hidden. :D

1 comments

You can name them if you want.
Hah. I didn't even realize you could _not_ name them.

I just do:

    jj b c zellyn/appname-update-plugh-tests
    jj git push
jj git push -c <changeid> will create a bookmark for you and automatically give it a random name. Most folks who do this configure it to add a prefix, often a username.
Oh, I didn't know you could do that. Nice.

EDIT: Docs here: https://github.com/jj-vcs/jj/blob/main/docs/config.md#prefix...