DevOps / GIT Interview Questions
What is cherry-pick in GIT?
Cherry picking means to choose a specific commit from one branch and apply it onto another.
It is a 2 step process where you need to check-out to the branch where you want to apply the commit and then apply the commit by its commit-hash.
git checkout master git cherry-pick <commit-hash>
More Related questions...