Select Page
How to undo a git cherry-pick

How to undo a git cherry-pick

Introduction The cherry-pick command in git allows you to move a group of commits from a given branch to another branch. This command gives rise to a different approach to git merge, and at times is used as an alternative for it. For instance, instead of using the git...