I created a stacked diff like this:
master - A - B - C
\
D
All the branches created by arc feature branch_name
.
How do I change it to A - B - C - D
while at the same time, D only shows it's own change?
Tried Git rebase --onto C A
, but then D includes all the changes from B and C.