What is the purpose of cherry-picking in Git?
- Apply specific commits
- Merge two branches
- Revert changes
- Delete a branch
Cherry-picking in Git allows you to select specific commits from one branch and apply them to another. This is useful when you only want certain changes from one branch without merging the entire branch.
Loading...
Related Quiz
- How can branching strategies in Git enhance build automation processes?
- What Git command would you use to discard changes in a specific file before it has been staged?
- The command git __________ is useful for reducing the size of a repository by removing unnecessary data.
- In Git, how would you manage multiple remote repositories for the same local repository?
- _______ in Git are essential for maintaining different versions of database scripts for various features.