What
Create a patch from one branch and apply it to another branch.
Why
Cherry-pick commits when direct merge isn't possible or desired.
How
git checkout master
git format-patch -1 COMMIT_HASH
git checkout WORKING_BRANCH
git am FILE_PATH
format-patch -1: creates patch file for single commitam: applies patch file (commit message preserved)