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

@@ -1,28 +1,28 @@
# git apply
> Applique un correctif à un fichier et/ou à l index.
> Plus d'informations : <https://git-scm.com/docs/git-apply>.
> Plus d'informations : <https://git-scm.com/docs/git-apply>.
- Afficher les messages à propos des fichiers corrigés :
- Afficher les messages à propos des fichiers corrigés :
`git apply --verbose {{chemin/vers/fichier}}`
- Applique le correctif et ajoute les fichiers à l index :
- Applique le correctif et ajoute les fichiers à l index :
`git apply --index {{chemin/vers/fichier}}`
- Applique un correctif depuis une source distante :
- Applique un correctif depuis une source distante :
`curl {{https://example.com/file.patch}} | git apply`
- Affiche les différences résultantes et applique le correctif :
- Affiche les différences résultantes et applique le correctif :
`git apply --stat --apply {{chemin/vers/fichier}}`
- Applique le correctif en ordre inverse :
- Applique le correctif en ordre inverse :
`git apply --reverse {{chemin/vers/fichier}}`
- Stocke le résultat du correctif dans l'index sans modifier la branche courante :
- Stocke le résultat du correctif dans l'index sans modifier la branche courante :
`git apply --cache {{chemin/vers/fichier}}`