- Published on
Cherry picking in Git
- Authors
- Name
- Milad E. Fahmy
- @miladezzat12
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.
- Make sure you are on the branch you want to apply the commit to.
git switch <branch_name>
- 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