Git Snippet: Move commit to existing branch

From Coder Merlin
Within these castle walls be forged Mavens of Computer Science ...
— Merlin, The Coder
git checkout existingbranch
git merge master
git checkout master
git reset --hard HEAD~3 # Go back 3 commits. You *will* lose uncommitted work.
git checkout existingbranch