-
In Git, when I'm on the $ git pull And it pulls down the latest changes and I'm now standing on the latest commit. But in JJ, it seems like I need to do: $ jj git fetch
$ jj bookmark move master --to master@origin
$ jj new master Is there any simpler way to do the same thing? Or is there a different workflow that suits JJ better than what I'm used to from Git? |
Beta Was this translation helpful? Give feedback.
Answered by
scott2000
Jul 25, 2025
Replies: 1 comment 1 reply
-
If you do |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
DanOpcode
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you do
jj bookmark track master@origin
, thenjj bookmark move master --to master@origin
will happen automatically when fetching.