2020-11-10 11:17:06 +00:00
|
|
|
|
# git cherry-pick
|
|
|
|
|
|
|
|
|
|
> Appliquer les modifications introduites par les commits existants à la branche actuelle.
|
|
|
|
|
> Pour appliquer les changements a une autre branche, utiliser d'abord `git checkout` pour basculer sur la branche désirée.
|
2021-01-30 17:03:18 +00:00
|
|
|
|
> Plus d'informations : <https://git-scm.com/docs/git-cherry-pick>.
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
2021-01-30 17:03:18 +00:00
|
|
|
|
- Applique un commit à la branche courrante :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
|
|
`git cherry-pick {{commit}}`
|
|
|
|
|
|
2021-01-30 17:03:18 +00:00
|
|
|
|
- Appliquer une plage de commits à la branche courrante (voir aussi `git rebase --onto`) :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
|
|
`git cherry-pick {{start_commit}}~..{{end_commit}}`
|
|
|
|
|
|
2021-01-30 17:03:18 +00:00
|
|
|
|
- Appliquer plusieurs commits non sequentiels à la branche courrante :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
|
|
`git cherry-pick {{commit_1}} {{commit_2}}`
|
|
|
|
|
|
2021-01-30 17:03:18 +00:00
|
|
|
|
- Appliquer les changements d'un commit a la branche courrante sans créer de commit :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
|
|
`git cherry-pick -n {{commit}}`
|