You are here

The wonderful cherry-pick

git-cherry-pick - Apply the changes introduced by some existing commits

Given one or more existing commits, apply the change each one introduces, recording a new commit for each. This requires your working tree to be clean (no modifications from the HEAD commit).

git fetch origin master (or whatever branch you need)

and then

git cherry-pick  <hash-of-commit-you-want>
code type: