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 @shantini
I swear by https://gitup.co for this kind of task. Yes, I can do it from the command line too, but the ability to (1) see what’s about to happen and (2) undo it cleanly just leave the CLI in the dust.
GitUp

GitUp is Git the way it should be

@inthehands @shantini I should give it a try again. I'm a devoted Tower user, but the ability to directly manipulate git graph is appealing.
@lucabernardi @inthehands tower is the way