tldr/pages.fr/common/git-revert.md

21 lines
553 B
Markdown
Raw Blame History

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

# git revert
> Créer un nouveau commit qui efface les changements du précédent.
> Plus d'informations : <https://git-scm.com/docs/git-revert>.
- Crée un commit qui annule les changements du dernier commit :
`git revert {{@}}`
- Crée un commit qui annule les changements des 5 dernier commit :
`git revert HEAD~{{4}}`
- Crée un commit qui annule les changements de plusieurs commit :
`git revert {{master~5..master~2}}`
- Ne pas créer de nouveau commit, remplacer uniquement dans l'arbre courant :
`git revert -n {{0c01a9..9a1743}}`