git*: add French translation (#4619)

This commit is contained in:
CARE-COLIN Thibaut
2020-11-10 12:17:06 +01:00
committed by GitHub
parent 6b167bcdd4
commit 8c8314f725
72 changed files with 1499 additions and 41 deletions

View File

@@ -0,0 +1,20 @@
# git revert
> Créer un nouveau commit qui efface les changements du précedant.
> 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 courrant :
`git revert -n {{0c01a9..9a1743}}`