-
Let's say I have this merged branch in my log:
I need to revert the I'm not sure how to do that in
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
I think you want to just |
Beta Was this translation helpful? Give feedback.
-
Do you actually need a |
Beta Was this translation helpful? Give feedback.
I think you want to just
jj new main && jj restore --from uom
. Since Jujutsu treats the contents of merge commits as being only the changes they make on top of the merge result (including conflict resolution), I think you can’t express this as a revert of any one commit. I suppose the alternative would be tojj revert -r klm::uxz -d main
and then squash them.