I have branched off the wrong branch and I want to move a commit to the master instead of a feature branch. Tried with rebase master from feat2 but I'm getting "Current branch ... is up to date"
Basically I want to go from this
feat2 F
/
feat1 C - D - E
/
master A - B
To this
feat1 C - D - E
/
master A - B
\
feat2 F
Of course F does not depend on any of C-D-E
EDIT: Forcing the rebase reveals that not only F is considered for it on feat2 but all of the commits from master are rebased (C-D-E-F). What I need is a way to tell rebase to "cut" at feat1.