Replace non-breaking space with regular space in French pages (#6842)

This commit is contained in:
marchersimon
2021-10-07 09:37:39 +02:00
committed by GitHub
parent 8c5596b720
commit d63065b882
168 changed files with 997 additions and 998 deletions

View File

@@ -2,20 +2,20 @@
> 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.
> Plus d'informations : <https://git-scm.com/docs/git-cherry-pick>.
> Plus d'informations : <https://git-scm.com/docs/git-cherry-pick>.
- Applique un commit à la branche courante :
- Applique un commit à la branche courante :
`git cherry-pick {{commit}}`
- Appliquer une plage de commits à la branche courante (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 séquentiels à la branche courante :
- Appliquer plusieurs commits non séquentiels à la branche courante :
`git cherry-pick {{commit_1}} {{commit_2}}`
- Appliquer les changements d'un commit à la branche courante sans créer de commit :
- Appliquer les changements d'un commit à la branche courante sans créer de commit :
`git cherry-pick -n {{commit}}`