git cherry-pick aplica um commit específico de uma branch para outra — copiando apenas as mudanças desse commit, sem fazer merge de toda a branch. É útil para aplicar seletivamente mudanças particulares, como fazer backport de uma correção.
Como cherry-pick funciona
# apply a specific commit from another branch onto the current branch
git cherry-pick <commit-hash>
git cherry-pick <commit1> <commit2>
git cherry-pick A..B
