Published on

Cherry picking in Git

Authors

Cherry picking in Git

Cherry picking in Git

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.

  1. Make sure you are on the branch you want to apply the commit to.
 git switch <branch_name>
  1. To get a commit you want execute the following:
 git cherry-pick <commit-hash>

for more about git cherry-pick: https://git-scm.com/docs/git-cherry-pick