My branches are:
o---o support.2013.16
\
o---o---o---o---o master
\
o---o---o hotfix/A
I need to copy hotfix/A to support.2013.16. I'm aware of cherry-picking, but is it possible to do something like
git rebase --onto support.2013.16 master hotfix/A
but without moving a branch but copying it instead?
git checkout -b <whatever>first to create the new branch name, then use rebase. The originalhotfix/Abranch would remain unchanged.