What is Git Cherry-Picking?
Cherry picking in git means to choose a commit from one branch and apply it onto another.
This is in contrast with other ways such as merge and rebase which normally apply many commits onto another branch. In other words, cherry-picking is when you want to take the contents of a single commit from another branch and copy-paste them to a destination branch as a brand new commit.
Quick Summary of Git Cherry-picking steps
- Find the commit hash you want to cherry-pick.
- Go to your destination branch.
- git cherry-pick -x commit-hash
- Resolve conflicts if they occur.
- If there are notes in the original commit, copy them over.
Detailed Git Cherry-picking process
- From the origin branch where you want to cherry pick from, run this command to get the commit has needed:
<code
git reflog
.</code
- Make sure you are on the branch you want to apply the commit to.
git checkout
Execute the following for the typical cherry-pick command is simply:
git cherry-pick commit-hash
As developers, we often perform a series of steps to achieve our objectives. Showing you an isolated cherry-pick command is the same as throwing you the manual and asking you to read it. - If you cherry-pick from a public branch, you should consider using
git cherry-pick -x commit-hash
This will generate a standardized commit message. This way, you (and your co-workers) can still keep track of the origin of the commit and may avoid merge conflicts in the future. - If you have notes attached to the commit they do not follow the cherry-pick. To bring them over as well, You have to use:
git notes copy from_commit_hash to_commit_hash