#Git tip
a
main----*
\
\c d
*----*fix
\
\e f
*----*feat
to this
a
main----*
|\
| \c d
| *----*fix
|
\ e f
\*----*feat
$ git switch feat
$ git rebase --onto main fix feat




