The act of moving a change from the tip to one of the branches can be done more easily since --after/-A was added. The probably cleanest flow is to be outside the commit you're moving (e.g. do a new) and then jj rebase -r thing_to_move -A the_target.
jj new and jj rebase -r @- -A target might fit the existing example well.
The act of moving a change from the tip to one of the branches can be done more easily since
--after/-Awas added. The probably cleanest flow is to be outside the commit you're moving (e.g. do anew) and thenjj rebase -r thing_to_move -A the_target.jj newandjj rebase -r @- -A targetmight fit the existing example well.