how to move new commit to next branch code example
Example 1: move branch to a commit
git checkout master
git reset --hard 1258f0d0aae
Example 2: git move latest commit to new branch
git checkout existingbranch
git branch newBranch
git reset --hard HEAD~2 # go back 2 commits on existingBranch