Files
tldr/pages.fr/common/git-cherry.md
2021-05-01 12:49:31 -04:00

17 lines
465 B
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# git cherry
> Rechercher des commits qui n'ont pas encore été appliqués en amont.
> Plus d'informations : <https://git-scm.com/docs/git-cherry>.
- Afficher les commits (et leurs messages) avec des commits équivalents en amont :
`git cherry -v`
- Spécifiez une branche amont et une branche de rubrique différentes :
`git cherry {{origin}} {{topic}}`
- Limiter les commits à ceux dans la limite donnée :
`git cherry {{origin}} {{topic}} {{base}}`