A have repository with two branches.
Master branch commits:
c1, c2, c3, c4, c5, c6, c7, ..., c15, ...
Staging Branch commits:
c1, c2, c3, c4, c5, c6, c7
I want to move all commits from Master branch after c7 to staging branch
and then revert Master branch
with
git reset --hard c7-hash
How to move/copy specific commits from one branch to another ?