git cherry-pick

git cherry-pick

About

git cherry-pick 1) is a git merge mechanism that allows you to:

to your branch.

Example

  • Apply the change introduced by the commit at the tip of the master branch and create a new commit with this change.
git cherry-pick master





Discover More
Git - Merge

Merge is a git merge tool that is designed to integrate changes from one branch into another branch It joins two or more branch together (ie development histories) The pull command is a wrapper that...
Git - Stash

git stash stashes the changes in a dirty working directory away before a pull/merge to bring them back later with a local merge. merge (pull do a fetch and merge) git stash pop pops the top stash...
Merge Mechanism

In Git, the merge mechanisms are: The high level command: git merge and git pull The low-level command: git cherry-pick They allow the backend merge strategies to be chosen (with the -s option)...



Share this page:
Follow us:
Task Runner