git cherry-pick applique un commit spécifique d'une branche sur une autre — en copiant uniquement les modifications de ce commit, sans fusionner toute la branche. C'est utile pour appliquer sélectivement des modifications particulières, comme le portage arrière d'une correction.
Fonctionnement de cherry-pick
# 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
