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.
Loading...
Related Quiz
- How does the query execution plan contribute to query optimization?
- The command "git reflog" displays a _______ of actions that have been taken in the repository.
- What is the principle of least privilege in security?
- What is a Git branch used for?
- You realize that the last few commits in your Git history are incorrect and need to be removed. What command(s) would you use to accomplish this?