FR: jj backout
should apply working copy commit as descendant of the revert commit
#2802
Labels
jj backout
should apply working copy commit as descendant of the revert commit
#2802
This originated from a conversation on discord
Is your feature request related to a problem? Please describe.
As a user, if I
jj backout -r A
from an empty working copy revision, the "revert" commitA'
is made as a descendant of the working copy revision. I expected the working copy revision to be the descendant of the revert commitA'
.As a user, currently I need to
jj rebase -r @ -d A'
to achieve the expected result.Describe the solution you'd like
The working copy revision is the descendant of the revert commit after a
jj backout
.Describe alternatives you've considered
Additional context
From:
A-B-@(empty)
I expected
A-B-A'-@(empty)
but got
A-B-@(empty)-A'
The text was updated successfully, but these errors were encountered: