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 git syntax never helps with these complex tasks
@emix @lucabernardi I know this feature exists, I know it happens with `git rebase --onto`, I still have to look it up every time to get the parameters right. Usually can’t even make sense of the man page but have to search for a blog post or the git book.
@juri I must admit that nowadays I would never use git without a GUI like Tower. It’s a real boost in productivity even for basic tasks
@emix yeah I use Fork and it’s nice enough but this sort of thing is beyond its abilities, I think. Should try GitUp like @inthehands suggested the next time I need to do this.
@juri @inthehands Tower is quite good at that. I never used GitUp, I’ll have a look at it, thanks!