2020-11-10 11:17:06 +00:00
|
|
|
|
# git apply
|
|
|
|
|
|
|
|
|
|
> Applique un correctif a un fichier et/ou a l index.
|
2021-01-30 17:03:18 +00:00
|
|
|
|
> Plus d'informations : <https://git-scm.com/docs/git-apply>.
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
2021-01-30 17:03:18 +00:00
|
|
|
|
- Afficher les messages a propos des fichiers corrigés :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
|
|
`git apply --verbose {{chemin/vers/fichier}}`
|
|
|
|
|
|
2021-01-30 17:03:18 +00:00
|
|
|
|
- Applique le correctif et ajoute les fichiers a l index :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
|
|
`git apply --index {{chemin/vers/fichier}}`
|
|
|
|
|
|
2021-01-30 17:03:18 +00:00
|
|
|
|
- Applique un correctif depuis une source distante :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
|
|
`curl {{https://example.com/file.patch}} | git apply`
|
|
|
|
|
|
2021-01-30 17:03:18 +00:00
|
|
|
|
- Affiche les differencs resultantes et applique le correctif :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
|
|
`git apply --stat --apply {{chemin/vers/fichier}}`
|
|
|
|
|
|
2021-01-30 17:03:18 +00:00
|
|
|
|
- Applique le correctif en ordre inverse :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
|
|
`git apply --reverse {{chemin/vers/fichier}}`
|
|
|
|
|
|
2021-01-30 17:03:18 +00:00
|
|
|
|
- Stocke le resultat du correctif dans l index sans modifier la branche courrante :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
|
|
`git apply --cache {{chemin/vers/fichier}}`
|