One of my favorite git tips is the ability to transplant a branch:

git rebase --onto release/2.0 release/1.3 feature

It transplant the `feature` branch from `release/1.3` onto `release/2.0`

@lucabernardi my reminder I made