What is the purpose of "git cherry-pick"?

  • Applying a specific commit to another branch
  • Creating a new branch from the latest commit
  • Merging two branches with conflicting changes
  • Reverting all changes in the working directory
The purpose of "git cherry-pick" is to apply a specific commit from one branch to another. It allows developers to select and incorporate individual commits into a different branch, facilitating the selective integration of changes.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *