Copy Patches Across Branches
Make sure you are on the branch you want apply the commit to.
git checkout master
Execute the following:
git cherry-pick <commit-hash>
References
[1] Rahul@StackOverflow, What does cherry-picking a commit with git mean?