multiple pages: fix typos in French translation (#5841)

This commit is contained in:
Nicolas Kosinski
2021-05-01 18:49:31 +02:00
committed by GitHub
parent 50d6e5906a
commit 6467b39f66
96 changed files with 297 additions and 297 deletions

View File

@@ -4,18 +4,18 @@
> Pour appliquer les changements a une autre branche, utiliser d'abord `git checkout` pour basculer sur la branche désirée.
> Plus d'informations : <https://git-scm.com/docs/git-cherry-pick>.
- Applique un commit à la branche courrante :
- Applique un commit à la branche courante :
`git cherry-pick {{commit}}`
- Appliquer une plage de commits à la branche courrante (voir aussi `git rebase --onto`) :
- Appliquer une plage de commits à la branche courante (voir aussi `git rebase --onto`) :
`git cherry-pick {{start_commit}}~..{{end_commit}}`
- Appliquer plusieurs commits non sequentiels à la branche courrante :
- Appliquer plusieurs commits non séquentiels à la branche courante :
`git cherry-pick {{commit_1}} {{commit_2}}`
- Appliquer les changements d'un commit a la branche courrante sans créer de commit :
- Appliquer les changements d'un commit à la branche courante sans créer de commit :
`git cherry-pick -n {{commit}}`